21 lines
430 B
C++
21 lines
430 B
C++
#include <cstring>
|
|
|
|
#include "peripherals/usb_serial.h"
|
|
|
|
///
|
|
/// So i lost all the code from the previous version of this due to messing with git.
|
|
/// I only have a binary file to flash onto the esp for that
|
|
/// so this is my attempt at reimplementation asap
|
|
///
|
|
/// Nicholas - 23/08/2026 @ 21:36
|
|
///
|
|
|
|
const char* test = "amai zeg";
|
|
|
|
|
|
extern "C" void app_main(void)
|
|
{
|
|
usb_serial::init();
|
|
usb_serial::write(test,strlen(test));
|
|
}
|