You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Aquatic-Robotic-Courier/software/ARC-FW/main.c

14 lines
239 B
C

#include <atmel_start.h>
#include "serial.h"
int main(void)
{
/* Initializes MCU, drivers and middleware */
atmel_start_init();
arc_serial_init();
arc_printf("Hello World");
/* Replace with your application code */
while (1) {
}
}