Add HARDWARE_YAACWK and left not default in this branch"

This reverts commit 24624afdce.
pull/50/head
Federico Briata 2016-07-05 03:19:27 +02:00
rodzic e9354b7c53
commit 984f038e31
2 zmienionych plików z 15 dodań i 2 usunięć

Wyświetl plik

@ -253,6 +253,10 @@ New fetures in this stable release:
Memories can now be programmed in commmand mode (FEATURE_COMMAND_BUTTONS) by pressing the memory button
FEATURE_CW_DECODER now has digital input pin (cw_decoder_pin) and if OPTION_CW_DECODER_GOERTZEL_AUDIO_DETECTOR is enable, cw_decoder_audio_input_pin will work in parallel
Add Yaacwk support
add hardware files for YAACWK Arduino Nano V3.0 based board
see http://i1cra.briata.org/yaacwk/ for more info
2.2.2015090801
Fixed issue with FEATURE_CW_DECODER + OPTION_CW_DECODER_GOERTZEL_AUDIO_DETECTOR and wrong GOERTZ_SAMPLING_FREQ and GOERTZ_SAMPLES used in goertzel.h causing keyer lockups after startup
@ -470,6 +474,10 @@ New fetures in this stable release:
#include "keyer_features_and_options_open_interface.h"
#endif
#ifdef HARDWARE_YAACWK
#include "keyer_features_and_options_yaacwk.h"
#endif
#ifdef HARDWARE_TEST
#include "keyer_features_and_options_test.h"
#endif
@ -503,6 +511,10 @@ New fetures in this stable release:
#include "keyer_settings_open_interface.h"
#endif
#ifdef HARDWARE_YAACWK
#include "keyer_pin_settings_yaacwk.h"
#include "keyer_settings_yaacwk.h"
#ifdef HARDWARE_TEST
#include "keyer_pin_settings_test.h"
#include "keyer_settings_test.h"
@ -14655,4 +14667,4 @@ void service_internet_link_udp_receive_buffer(){
}
#endif //FEATURE_UDP
#endif //FEATURE_UDP

Wyświetl plik

@ -13,11 +13,12 @@
// #define HARDWARE_NANOKEYER_REV_D // https://nanokeyer.wordpress.com/nanokeyer-info/ files: keyer_pin_settings_nanokeyer_rev_d.h, keyer_features_and_options_nanokeyer_rev_d.h, keyer_settings_nanokeyer_rev_d.h
// #define HARDWARE_OPEN_INTERFACE // http://remoteqth.com/open-interface.php files: keyer_pin_settings_open_interface.h, keyer_features_and_options_open_interface.h, keyer_settings_open_interface.h
// #define HARDWARE_ARDUINO_DUE
// #define HARDWARE_YAACWK // http://i1cra.briata.org/yaacwk/ files: keyer_pin_settings_yaacwk.h, keyer_features_and_options_yaacwk.h, keyer_settings_yaacwk.h
// #define HARDWARE_TEST
// do not touch anything below this line
#if defined(HARDWARE_NANOKEYER_REV_B) || defined(HARDWARE_NANOKEYER_REV_D) || defined(HARDWARE_OPEN_INTERFACE) || defined(HARDWARE_TEST)
#if defined(HARDWARE_NANOKEYER_REV_B) || defined(HARDWARE_NANOKEYER_REV_D) || defined(HARDWARE_OPEN_INTERFACE) || defined(HARDWARE_YAACWK) || defined(HARDWARE_TEST)
#define HARDWARE_CUSTOM
#endif