Blame view

qspi_loader-master/qspi_loader/cdcacm.h 270 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
  #ifndef __QSPI_LOADER_USBCDC_H__
  #define __QSPI_LOADER_USBCDC_H__ 1
  
  #include <stdbool.h>
  #include <stdint.h>
  
  extern void cdcacm_init(void);
  extern uint8_t cdcacm_get_char(void);
  extern void cdcacm_put_char(uint8_t);
  extern void cdcacm_put_buf(uint8_t *, int);
  
  #endif