看了C2833x/C2823x C/C++ Header Files and Peripheral Examples Quick Start Version 1.31中的Flash例程
其中,DSP2833x_CSMPasswords.asm 中含有安全密码
.sect "csmpasswds"
.int 0xFFFF ;PWL0 (LSW of 128-bit password)
.int 0xFFFF ;PWL1
.int 0xFFFF ;PWL2
.int 0xFFFF ;PWL3
.int 0xFFFF ;PWL4
.int 0xFFFF ;PWL5
.int 0xFFFF ;PWL6
.int 0xFFFF ;PWL7 (MSW of 128-bit password)
且F28335.cmd中含有
MEMORY
{
PAGE 0:
……
CSM_PWL : origin = 0x33FFF8, length = 0x000008
……
}
SECTIONS
{
……
csmpasswds : > CSM_PWL PAGE = 0
……
}
如果用CCS3.3的F28xx On-Chip Programer烧写程序,会不会有冲突?