This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/AWR1642BOOST: Can I use HSRAM in sbl code?

Part Number: AWR1642BOOST

Tool/software: Code Composer Studio

HI

  I just want to use HSRAM(0X52080000~0X5208FFFF),but when i read the value at 0x52087800 which I want to use ,i can not read it .When i debug it with CCS,it seemed overtime.

 Hope your reply,thanks!

  • Hi,

    It depends on the MPU setting which may restrict the memory access. In SBL MPU setting is bypassed which will cause this restriction.

    /* MPU is configured by SBL. Bypass the default configuration. */
    socCfg.mpuCfg = SOC_MPUCfg_BYPASS_CONFIG;

    MPU setting of HSRAM is available in SOC_mpu_config function of soc_xwr16xx_mss.c file which you need to copy to SBL_mpuConfigDefault function of SBL to access HSRAM.

    Please check and modify accordingly. 

    Regards,

    Jitendra