This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

boot loader nRF52810

HI,

I need help on the bootloader. I could not get it work.

thanks,

David

Parents Reply
  • Hi Vidar,

    Following is my uart txd code:

    Case #1: it is good. I sends 10 bytes and it receives 10 bytes

    void sendData()
    {
    uByte Array[10] = {0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A};
    HAL_UART_Transmit(&huart1, (uint8_t *) Array, 10, 200);
    }

    case#2: it does not work. I sends 10 bytes but it receives 182 bytes. Do you know why?

    void sendData()
    {
    uByte Array[10] = {0x01,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA};
    HAL_UART_Transmit(&huart1, (uint8_t *) Array, 10, 200);
    }

Children
Related