1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-12-25 03:36:02 +00:00
Atmosphere/thermosphere/src/main.c

16 lines
282 B
C
Raw Normal View History

#include "utils.h"
#include "uart.h"
#include "car.h"
#include "log.h"
int main(void)
{
// Init uart (hardcoded atm)
uart_select(UART_C);
clkrst_reboot(CARDEVICE_UARTC);
uart_init(UART_C, 115200, true);
serialLog("Hello from Thermosphere!\n");
return 0;
}