Hi, community,I am converting a TI CCS project into STM32 project.In the TI CCS project, a const array is defined in the file array.c, e.g.const uint16_t ARRAY[] = {0, 1, 2, 3, 4, 5};and in the main.c, the array is recast asextern uint16_t ARRAY[];an...