Implement a secure ICS protocol targeting LoRa Node151 microcontroller for controlling irrigation.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
229 B

  1. #include <usbd_cdc_if.h>
  2. #include <strobe_rng_init.h>
  3. #include <board.h>
  4. int
  5. main(void)
  6. {
  7. strobe_rng_init();
  8. board_init();
  9. HAL_GPIO_WritePin(GPIOB, GPIO_PIN_8, GPIO_PIN_SET);
  10. wait_for_vcp();
  11. usb_printf("foo\r\n");
  12. }