i'm using stm32H7,i want to use ITCM/DTCM ram,so i want add .o file in stm32H7XXXXX.ld filei try .main_section { . = ALIGN(4); CORE/src/main.o(.data); . =ALIGN(4)}>ITCMRAMbut gcc report errorso i want to known how fix it?
In the official example(Ux_Device_HID_CDC_ACM),HID devices as mouse/* Mouse event. Length is fixed to . */
hid_event->ux_device_class_hid_event_length = 3;
/* Set X position. */
hid_event->ux_device_class_hid_event_buffer[0] = x;
/* Set Y...
while(1)
{
TX_MEMSET(data_buffer, '\0', sizeof(data_buffer));
/* allocate the packet to send over the TCP socket */
ret = nx_packet_allocate(&AppPool, &data_packet, NX_IPv4_TCP_PACKET, TX_WAIT_FOREVER);
if (ret != NX_SUCCESS...