mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 13:41:13 +00:00
17 lines
269 B
C++
17 lines
269 B
C++
/*
|
|
* CPPFile1.cpp
|
|
*
|
|
* Created: 5/27/2014 10:19:21 PM
|
|
* Author: Corwin
|
|
*/
|
|
#include "Misc.h"
|
|
#include <avr/io.h>
|
|
#include "XMegaMacros.h"
|
|
|
|
void DockArm(unsigned char dockState){
|
|
if(dockState == DOCK_ARM){
|
|
ERROR_SET();
|
|
}else if(dockState == UNDOCK_ARM){
|
|
|
|
}
|
|
} |