Renamed project from "Debug_UART-USB" to "Debug_USB" and changed symbols from "UART" to "USB" for better consistency

This commit is contained in:
William Miceli
2021-06-25 11:05:17 -04:00
parent 4017f8fda2
commit 073dfe8753
22 changed files with 10 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
/*
* I/O Initialization
*/
/*
* Initialize I/O port directions and states
* Drive unused pins as outputs to avoid floating inputs and wasting power
*
*/
#ifndef IO_INIT_H_
#define IO_INIT_H_
#include "SunseekerTelemetry2021.h"
void io_init(void);
#endif /* IO_INIT_H_ */