To do that, you have to modify the build option to generate a new lcf file, for example, a new 16bytes long section "m_param" is defined as below:

and in your code, use the following to predefine the data stored into that section:
| #pragma define_section m_param ".m_param" abs32 RX | |
static __declspec(m_param) uint8_t m_param[0x10] = {
0x04U, 0x03U, 0x02U, 0x01U, 0x08U, 0x07U, 0x06U, 0x05U,
0x09U, 0x0AU, 0x0BU, 0x0CU, 0x0DU, 0x0FU, 0x10U, 0x00U
};
Please kindly refer to attachment for more details. !
Hope that helps,
B.R
Kan