Fix Functional Test example
This commit is contained in:
parent
e8ad7e9c93
commit
8b8fd7a9a1
|
@ -44,7 +44,7 @@ void setup() {
|
||||||
void loop() {
|
void loop() {
|
||||||
radio.setModeReceive();
|
radio.setModeReceive();
|
||||||
radio.setSQLoThresh(0);
|
radio.setSQLoThresh(0);
|
||||||
radio.setSQOn();
|
radio.setSQOff();
|
||||||
radio.setVolume1(0xF);
|
radio.setVolume1(0xF);
|
||||||
radio.setVolume2(0xF);
|
radio.setVolume2(0xF);
|
||||||
delay(1000);
|
delay(1000);
|
||||||
|
|
|
@ -507,11 +507,11 @@ class HamShield {
|
||||||
bool tx_active;
|
bool tx_active;
|
||||||
bool rx_active;
|
bool rx_active;
|
||||||
uint32_t radio_frequency;
|
uint32_t radio_frequency;
|
||||||
uint32_t FRS[];
|
/* uint32_t FRS[];
|
||||||
uint32_t GMRS[];
|
uint32_t GMRS[];
|
||||||
uint32_t MURS[];
|
uint32_t MURS[];
|
||||||
uint32_t WX[];
|
uint32_t WX[];
|
||||||
|
*/
|
||||||
// private utility functions
|
// private utility functions
|
||||||
// these functions should not be called in the Arduino sketch
|
// these functions should not be called in the Arduino sketch
|
||||||
// just use the above public functions to do everything
|
// just use the above public functions to do everything
|
||||||
|
|
Loading…
Reference in New Issue