stm32f4-uart-bootloader

Simple UART bootloader for STM32F4 MCU's
git clone git://git.mdnr.space/stm32f4-uart-bootloader
Log | Files | Refs | Submodules | README | LICENSE

bl-packet.h (205B)


      1 #ifndef __PACKET_H__
      2 #define __PACKET_H__
      3 
      4 #include <stdint.h>
      5 
      6 uint8_t *bl_packet_received(void);
      7 
      8 void packet_init(void);
      9 void packet_send_nack(void);
     10 void packet_send_ack(void);
     11 
     12 #endif // __PACKET_H__