Finished RS-232 debug project

This commit is contained in:
William Miceli
2021-06-25 13:34:24 -04:00
parent e31372a8e6
commit 3c9745a134
22 changed files with 1587 additions and 0 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_ */