Standardize serial monitor baud rate in AFSK Packet Tester example

This commit is contained in:
nick6x 2016-08-18 19:14:08 -07:00
parent 9e0db9d537
commit 62e137f8f2
2 changed files with 1 additions and 3 deletions

View File

@ -45,7 +45,7 @@ void setup() {
// turn on pwr to the radio
digitalWrite(RESET_PIN, HIGH);
Serial.begin(115200);
Serial.begin(9600);
radio.initialize();
radio.frequency(144390);

View File

@ -22,8 +22,6 @@
#define HAMSHIELD_PWM_PIN 3 // Pin assignment for PWM output
#define HAMSHIELD_EMPTY_CHANNEL_RSSI -110 // Default threshold where channel is considered "clear"
#define HAMSHIELD_AFSK_RX_FIFO_LEN 16
// button modes
#define PTT_MODE 1
#define RESET_MODE 2