Hi, i have assigned RAM address as:
#define RAM_MEMORY_TEST_ADDRESS (0x20002BD8)
uint8_t * p_ram_test = (uint8_t *)RAM_MEMORY_TEST_ADDRESS;
to this p_ram_test i am assigning : p_ram_test = packet_form;// where packet form is also array of 16 elements of type uint8_t.
above things are done in main,c
In our_srvice.c I want to add p_ram_test to attr_char_value as:
attr_char_value.p_value = extern p_ram_test; but it showing error as expected an expression.
How to add ram variable to characteristic value?