Europalab Devices produces a LoRaWAN transmitting client node, specialised for higher research of actuator and sensor assisted IoT networks. https://dev.europalab.com/nlnet/20200000/
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
275B

  1. #ifndef UNITEST_TRANSPORT_H
  2. #define UNITEST_TRANSPORT_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. void unittest_uart_begin();
  7. void unittest_uart_putchar(char c);
  8. void unittest_uart_flush();
  9. void unittest_uart_end();
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif // UNITEST_TRANSPORT_H