24 lines
317 B
C
24 lines
317 B
C
/**
|
|
* @file main.c
|
|
* @author Trevor Barnes
|
|
* @brief
|
|
* @version 0.1
|
|
* @date 2022-02-11
|
|
*
|
|
* @copyright Copyright (c) 2022
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
#include "uart_driver.h"
|
|
#include "delay.h"
|
|
#include "led.h"
|
|
#include "tasker.h"
|
|
|
|
int main(void) {
|
|
|
|
}
|