We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
the memory map definition in CoreSightTarget is:
return MemoryMap( RamRegion(name="Code", start=0x00000000, length=0x20000000, access='rwx'), RamRegion(name="SRAM", start=0x20000000, length=0x20000000, access='rwx'),
after start debugging in vscode + Cortex-Debug, the program don't stop at entry of main.
but after changing memory map definition to:
return MemoryMap( FlashRegion(name="Code", start=0x00000000, length=0x20000000, blocksize=0x800, access='rwx'), RamRegion(name="SRAM", start=0x20000000, length=0x20000000, access='rwx'),
after start debugging in vscode + Cortex-Debug, the program stop at entry of main.
So is this a problem?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the memory map definition in CoreSightTarget is:
after start debugging in vscode + Cortex-Debug, the program don't stop at entry of main.
but after changing memory map definition to:
after start debugging in vscode + Cortex-Debug, the program stop at entry of main.
So is this a problem?
The text was updated successfully, but these errors were encountered: