工具与软件:
您好! 我无法刷写我的 UC。 我使用 XDS100v3作为编程器。 我有一个开关、 可以更改启动模式。 我在 GPoi 32和24上安装了2k2下拉电阻器、我可以激活56K 上拉电阻器。 在我的代码中,我有以下3个指令:
#pragma CODE_SECTION(mainISR, ".TI.ramfunc"); #pragma DATA_SECTION(userParams, "ctrl_data"); volatile MOTOR_Vars_t motorVars = MOTOR_VARS_INIT; #pragma DATA_SECTION(motorVars, "ctrl_data");
main.cn`t 中没有 此文件、但我认为这很重要。
我有 F28069M 的相关经验、 通常在 main 的开头会有如下这样的指令:
#ifdef FLASH // Copy time critical code and Flash setup code to RAM // The RamfuncsLoadStart, RamfuncsLoadEnd, and RamfuncsRunStart // symbols are created by the linker. Refer to the linker files. memCopy((uint16_t *)&RamfuncsLoadStart,(uint16_t *)&RamfuncsLoadEnd,(uint16_t *)&RamfuncsRunStart); #endif
但这里有n`t 相似的东西。
我尝试了不同的引导模式->不走运。 有什么建议我在做什么错?
在n`t 的 lab07中有一种计数器,我用它作为参考,但我找不到任何意义的目的的计数器...
谢谢!