mirror of
https://github.com/k3ng/k3ng_rotator_controller.git
synced 2024-12-22 14:32:25 +00:00
f30b31fe4b
Updates to rotator_language.h Fixed k3ngdisplay.h / LiquidCrystal.h compilation problems with Arduino IDE Integrated DebugClass (debug.h and debug.cpp) contributed from Matt VK5ZM
18 lines
871 B
C
Executable File
18 lines
871 B
C
Executable File
/* rotator_hardware.h
|
|
|
|
Uncomment defines below if you're specifically using any of this hardware and edit the appropriate special features, pins, and settings files
|
|
|
|
*/
|
|
|
|
//#define HARDWARE_M0UPU // customize rotator_features_m0upu.h, rotators_pins_m0upu.h, rotator_settings_m0upu.h
|
|
//#define HARDWARE_EA4TX_ARS_USB // customize rotator_features_e4tx_ars_usb.h, rotators_pins_e4tx_ars_usb.h, rotator_settings_e4tx_ars_usb.h
|
|
//#define HARDWARE_WB6KCN // customize rotator_features_wb6kcn.h, rotators_pins_wb6kcn.h, rotator_settings_wb6kcn.h
|
|
//#define HARDWARE_TEST // customize rotator_features_test.h, rotators_pins_test.h, rotator_settings_test.h
|
|
|
|
|
|
// do not modify anything below this line
|
|
|
|
#if defined(HARDWARE_M0UPU) || defined(HARDWARE_EA4TX_ARS_USB) || defined(HARDWARE_WB6KCN) || defined(HARDWARE_TEST)
|
|
#define HARDWARE_CUSTOM
|
|
#endif
|