football_project_wo_output

Dependencies:   mbed

Fork of football_project by MZJ

Committer:
andriym
Date:
Thu May 26 18:59:19 2016 +0000
Revision:
82:1e552cc1a615
Parent:
81:3cd7de5d01ef
Child:
83:79cb2ba44b66
debounce library converted to folder

Who changed what in which revision?

UserRevisionLine numberNew contents of line
elmbed 76:6638d83939d5 1 #include <RFM69.h>
andriym 78:43a6b54f0372 2 #include <list>
andriym 78:43a6b54f0372 3 #include "output.h"
andriym 82:1e552cc1a615 4 #include <DebounceIn.h>
AntonLS 0:28ca4562fe1a 5
andriym 78:43a6b54f0372 6 using namespace std;
andriym 78:43a6b54f0372 7
andriym 78:43a6b54f0372 8 Timer t;
andriym 78:43a6b54f0372 9 Output out;
elmbed 17:d8b901d791fd 10
andriym 78:43a6b54f0372 11 /////////////////////////////////// PINS ///////////////////////////////////
andriym 79:9db29f41dc9d 12
andriym 82:1e552cc1a615 13 DebounceIn buttonTeam(BUT_TEAM);
andriym 82:1e552cc1a615 14 DebounceIn buttonSpace(BUT_SPACE);
andriym 82:1e552cc1a615 15 DebounceIn buttonVolMore(BUT_VOL_MORE);
andriym 82:1e552cc1a615 16 DebounceIn buttonVolLess(BUT_VOL_LESS);
andriym 81:3cd7de5d01ef 17
andriym 79:9db29f41dc9d 18 DigitalOut ledTeamA(LED_TEAM_A);
andriym 79:9db29f41dc9d 19 DigitalOut ledTeamB(LED_TEAM_B);
andriym 79:9db29f41dc9d 20 DigitalOut ledSpace5(LED_SPACE5);
andriym 79:9db29f41dc9d 21 DigitalOut ledSpace10(LED_SPACE10);
andriym 79:9db29f41dc9d 22 DigitalOut ledSpace15(LED_SPACE15);
andriym 79:9db29f41dc9d 23 DigitalOut ledSpace20(LED_SPACE20);
andriym 81:3cd7de5d01ef 24 DigitalOut ledBuzzer(LED_BUZZER_ON);
andriym 81:3cd7de5d01ef 25
andriym 79:9db29f41dc9d 26 AnalogIn ain(ANALOG_IN); // used for randomizing
andriym 78:43a6b54f0372 27 #ifdef NORDIC
andriym 79:9db29f41dc9d 28 DigitalOut buzzer(BUZZER);
andriym 79:9db29f41dc9d 29 DigitalOut buzzLow(BUZZ_LOW);
andriym 79:9db29f41dc9d 30 DigitalOut buzzMed(BUZZ_MED);
andriym 79:9db29f41dc9d 31 DigitalOut buzzHigh(BUZZ_HIGH);
andriym 79:9db29f41dc9d 32 #else
andriym 79:9db29f41dc9d 33 PwmOut speaker(BUZZER); // passive buzzer
andriym 79:9db29f41dc9d 34 #endif
AntonLS 30:c60b0d52b067 35
andriym 78:43a6b54f0372 36 /////////////////////////////////// RADIO ///////////////////////////////////
andriym 79:9db29f41dc9d 37 static RFM69 radio(RFM_MOSI, RFM_MISO, RFM_SCK, RFM_SS, RFM_IRQ);
AntonLS 12:6d313d575f84 38
elmbed 76:6638d83939d5 39 static bool promiscuousMode = true; // set 'true' to sniff all packets on the same network
AntonLS 0:28ca4562fe1a 40
andriym 78:43a6b54f0372 41 /////////////////////////////////// FUNCTIONS ///////////////////////////////////
andriym 78:43a6b54f0372 42
andriym 81:3cd7de5d01ef 43 void beep(float period, float time, uint8_t vol) {
andriym 78:43a6b54f0372 44 #ifdef ENABLE_SOUND
andriym 81:3cd7de5d01ef 45 if(!vol) return;
andriym 79:9db29f41dc9d 46 #ifdef NORDIC
andriym 81:3cd7de5d01ef 47 if(vol>=3) {
andriym 80:8d4f190bd253 48 buzzLow = 0; buzzMed = 1; buzzHigh = 1; // P-MOSFET
andriym 81:3cd7de5d01ef 49 } else if(vol>=2) {
andriym 80:8d4f190bd253 50 buzzLow = 1; buzzMed = 0; buzzHigh = 1;
andriym 79:9db29f41dc9d 51 } else {
andriym 80:8d4f190bd253 52 buzzLow = 1; buzzMed = 1; buzzHigh = 0;
andriym 79:9db29f41dc9d 53 }
andriym 80:8d4f190bd253 54 buzzer = 0; // P-MOSFET
andriym 80:8d4f190bd253 55 wait(time);
andriym 79:9db29f41dc9d 56 buzzer = 1;
andriym 79:9db29f41dc9d 57 #else
andriym 78:43a6b54f0372 58 speaker.period(period);
andriym 81:3cd7de5d01ef 59 if(vol>=3)
andriym 81:3cd7de5d01ef 60 speaker = 0.5; //50% duty cycle - max volume
andriym 81:3cd7de5d01ef 61 else if(vol>=2)
andriym 81:3cd7de5d01ef 62 speaker = 0.33;
andriym 81:3cd7de5d01ef 63 else
andriym 81:3cd7de5d01ef 64 speaker = 0.2;
andriym 78:43a6b54f0372 65 wait(time);
andriym 78:43a6b54f0372 66 speaker=0.0; // turn off audio
andriym 78:43a6b54f0372 67 #endif
andriym 79:9db29f41dc9d 68 #endif
andriym 78:43a6b54f0372 69 }
andriym 78:43a6b54f0372 70
andriym 78:43a6b54f0372 71 void binary_sound(int z) {
andriym 78:43a6b54f0372 72 // Beeps numbers according to their binary form
andriym 78:43a6b54f0372 73 // (used for debugging in display-less and serial-less environments)
andriym 78:43a6b54f0372 74 #ifdef ENABLE_SOUND
andriym 79:9db29f41dc9d 75 #ifndef NORDIC
andriym 78:43a6b54f0372 76 speaker.period(0.004);
andriym 78:43a6b54f0372 77 while(z) {
andriym 78:43a6b54f0372 78 speaker = 0.5;
andriym 78:43a6b54f0372 79 if(z&1) wait(0.5);
andriym 78:43a6b54f0372 80 else wait(0.25);
andriym 78:43a6b54f0372 81 speaker = 0.0;
andriym 78:43a6b54f0372 82 wait(1.0);
andriym 78:43a6b54f0372 83 z >>= 1;
andriym 78:43a6b54f0372 84 }
andriym 81:3cd7de5d01ef 85 beep(NOTE_A4, 1.0, 2);
andriym 79:9db29f41dc9d 86 #endif
andriym 78:43a6b54f0372 87 #endif
andriym 78:43a6b54f0372 88 }
andriym 78:43a6b54f0372 89
andriym 78:43a6b54f0372 90 void generate_name(char rand_name[], uint8_t size) {
andriym 78:43a6b54f0372 91 // Generate random name on the 62 character alphabet
andriym 78:43a6b54f0372 92 memset(rand_name, 0x00, size);
andriym 78:43a6b54f0372 93 char alph[63] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
andriym 78:43a6b54f0372 94 uint32_t seed = ((ain.read_u16()+3)/17)*(radio.readTemperature(-1)+37)*((ain.read_u16()+5)/13);
andriym 78:43a6b54f0372 95 srand(seed);
andriym 78:43a6b54f0372 96 for(int i=0;i<size-1;i++) {
andriym 78:43a6b54f0372 97 rand_name[i] = alph[abs(rand()) % 62];
andriym 78:43a6b54f0372 98 }
andriym 78:43a6b54f0372 99 }
andriym 78:43a6b54f0372 100
andriym 78:43a6b54f0372 101 /////////////////////////////////// CLASSES ///////////////////////////////////
andriym 78:43a6b54f0372 102
andriym 78:43a6b54f0372 103 struct Contact {
andriym 78:43a6b54f0372 104 int16_t rssi;
andriym 78:43a6b54f0372 105 uint32_t time_ms;
andriym 78:43a6b54f0372 106 };
andriym 78:43a6b54f0372 107
andriym 78:43a6b54f0372 108 class Player {
andriym 78:43a6b54f0372 109 public:
andriym 78:43a6b54f0372 110 char name[NAME_LEN+1];
andriym 78:43a6b54f0372 111 int8_t team;
andriym 78:43a6b54f0372 112 Player(const char rand_name[]) {
andriym 78:43a6b54f0372 113 memset(name, 0x00, NAME_LEN+1);
andriym 78:43a6b54f0372 114 memcpy(name, rand_name, NAME_LEN);
andriym 78:43a6b54f0372 115 }
andriym 78:43a6b54f0372 116 void update(int8_t _team, int rssi, uint32_t time=NULL) {
andriym 78:43a6b54f0372 117 // Remember this contact
andriym 78:43a6b54f0372 118 team = _team;
andriym 78:43a6b54f0372 119 Contact c;
andriym 78:43a6b54f0372 120 c.rssi = rssi;
andriym 78:43a6b54f0372 121 c.time_ms = (time!=NULL) ? time : t.read_ms();
andriym 78:43a6b54f0372 122 contacts.push_front(c);
andriym 78:43a6b54f0372 123
andriym 78:43a6b54f0372 124 // Cleanup
andriym 78:43a6b54f0372 125 while(contacts.size() > MAX_RECORDS) contacts.pop_back();
andriym 78:43a6b54f0372 126 while(!contacts.empty() && c.time_ms - contacts.back().time_ms > MAX_HISTORY_MS) contacts.pop_back();
andriym 78:43a6b54f0372 127 }
andriym 78:43a6b54f0372 128 int16_t get_distance(int &cnt) {
andriym 78:43a6b54f0372 129 // Find max RSSI
andriym 78:43a6b54f0372 130 uint32_t cur_time = t.read_ms();
andriym 78:43a6b54f0372 131 int16_t max_rssi=-128;
andriym 78:43a6b54f0372 132 cnt=0;
andriym 78:43a6b54f0372 133 for (list<Contact>::iterator it=contacts.begin(); it != contacts.end(); ++it) {
andriym 78:43a6b54f0372 134 if(cur_time - it->time_ms > SIGNALS_VALID_MS) break;
andriym 78:43a6b54f0372 135 if(it->rssi > max_rssi) max_rssi = it->rssi;
andriym 78:43a6b54f0372 136 cnt++;
andriym 78:43a6b54f0372 137 }
andriym 78:43a6b54f0372 138 return max_rssi;
andriym 78:43a6b54f0372 139 }
andriym 78:43a6b54f0372 140 inline bool operator==(const char rhs[]){ return memcmp(name, rhs, NAME_LEN)==0; }
andriym 78:43a6b54f0372 141 inline bool operator==(const Player& rhs){ return *this==rhs.name; }
andriym 78:43a6b54f0372 142 //inline bool operator!=(const char rhs[]){ return !(*this == rhs); }
andriym 78:43a6b54f0372 143 private:
andriym 78:43a6b54f0372 144 list<Contact> contacts;
andriym 78:43a6b54f0372 145 };
andriym 78:43a6b54f0372 146
andriym 78:43a6b54f0372 147 class Players {
andriym 78:43a6b54f0372 148 public:
andriym 78:43a6b54f0372 149 list<Player> players;
andriym 78:43a6b54f0372 150
andriym 78:43a6b54f0372 151 void update(const char name[], int8_t team, int16_t rssi, uint32_t time_ms=NULL) {
andriym 78:43a6b54f0372 152 list<Player>::iterator it;
andriym 78:43a6b54f0372 153 for (it=players.begin(); it != players.end(); ++it) {
andriym 78:43a6b54f0372 154 if(*it==name) break;
andriym 78:43a6b54f0372 155 }
andriym 78:43a6b54f0372 156 if(it!=players.end()) {
andriym 78:43a6b54f0372 157 it->update(team, rssi, time_ms);
andriym 78:43a6b54f0372 158 } else {
andriym 78:43a6b54f0372 159 Player p(name);
andriym 78:43a6b54f0372 160 p.update(team, rssi, time_ms);
andriym 78:43a6b54f0372 161 players.push_front(p);
andriym 78:43a6b54f0372 162 }
andriym 78:43a6b54f0372 163 }
andriym 78:43a6b54f0372 164
andriym 81:3cd7de5d01ef 165 void showAll(int8_t team, uint8_t level, uint8_t volume) {
andriym 79:9db29f41dc9d 166 // Output the current state to the user:
andriym 79:9db29f41dc9d 167 // - show the current information table and/or
andriym 79:9db29f41dc9d 168 // - beep if the user is too close to another one
andriym 79:9db29f41dc9d 169 int i=0, nContacts, signal, maxTeamSignal = -128;
andriym 78:43a6b54f0372 170 list<Player>::iterator it;
andriym 78:43a6b54f0372 171 out.clear();
andriym 78:43a6b54f0372 172 for (it=players.begin(); it != players.end(); ++it) {
andriym 79:9db29f41dc9d 173 signal = it->get_distance(nContacts);
andriym 79:9db29f41dc9d 174 if(signal>-128) {
andriym 78:43a6b54f0372 175 out.printf("%d ", ++i);
andriym 78:43a6b54f0372 176 out.printf((team==it->team) ? "+" : "-"); // teammate or opponent?
andriym 78:43a6b54f0372 177 out.printf("%s ", it->name);
andriym 79:9db29f41dc9d 178 out.printf("%d/%d", -signal, nContacts);
andriym 79:9db29f41dc9d 179 out.printf((-signal<SPACE[level]) ? "!" : " ");
andriym 79:9db29f41dc9d 180 out.printf("\r\n");
andriym 79:9db29f41dc9d 181 }
andriym 79:9db29f41dc9d 182 if(team==it->team && signal>maxTeamSignal) {
andriym 79:9db29f41dc9d 183 maxTeamSignal = signal;
andriym 78:43a6b54f0372 184 }
andriym 78:43a6b54f0372 185 }
andriym 79:9db29f41dc9d 186 //if(!i) {
andriym 79:9db29f41dc9d 187 // out.printf("Nobody around\r\n");
andriym 81:3cd7de5d01ef 188 // beep(NOTE_A5,0.5,volume);
andriym 79:9db29f41dc9d 189 //}
andriym 79:9db29f41dc9d 190 if(-maxTeamSignal<SPACE[level]) {
andriym 81:3cd7de5d01ef 191 beep(NOTE_A4, 0.33, volume);
andriym 78:43a6b54f0372 192 }
andriym 78:43a6b54f0372 193 }
andriym 78:43a6b54f0372 194 };
andriym 78:43a6b54f0372 195
andriym 78:43a6b54f0372 196 /////////////////////////////////// MAIN CODE ///////////////////////////////////
andriym 78:43a6b54f0372 197
elmbed 76:6638d83939d5 198 int main()
andriym 78:43a6b54f0372 199 {
elmbed 76:6638d83939d5 200 char tx_buff[100] = {0};
elmbed 76:6638d83939d5 201 char rx_buff[100] = {0};
andriym 78:43a6b54f0372 202 char rand_name[NAME_LEN+1] = {0};
andriym 78:43a6b54f0372 203 char other_name[NAME_LEN+1] = {0};
andriym 79:9db29f41dc9d 204 int8_t myTeam = 1, otherTeam;
andriym 81:3cd7de5d01ef 205 uint8_t level = 1, volume = 1; // SPACE10, VOL_MED
elmbed 76:6638d83939d5 206
andriym 81:3cd7de5d01ef 207 ledBuzzer = volume ? 1 : 0;
andriym 81:3cd7de5d01ef 208 beep(NOTE_A5, 0.5, volume);
andriym 78:43a6b54f0372 209
andriym 79:9db29f41dc9d 210 buttonSpace.mode(PullDown);
andriym 81:3cd7de5d01ef 211 buttonVolMore.mode(PullDown);
andriym 81:3cd7de5d01ef 212 buttonVolLess.mode(PullDown);
andriym 79:9db29f41dc9d 213 #ifdef NORDIC
andriym 79:9db29f41dc9d 214 buttonTeam.mode(PullDown);
andriym 79:9db29f41dc9d 215 int bTeamOld = 0;
andriym 79:9db29f41dc9d 216 #else
andriym 79:9db29f41dc9d 217 buttonTeam.mode(PullUp);
andriym 79:9db29f41dc9d 218 int bTeamOld = 1;
andriym 79:9db29f41dc9d 219 #endif
andriym 81:3cd7de5d01ef 220 int bTeamNew, bSpaceOld=0, bSpaceNew, bVMNew, bVLNew, bVMOld=0, bVLOld=0;
elmbed 76:6638d83939d5 221
andriym 78:43a6b54f0372 222 char this_node = int(ain.read()*255+17)*int(ain.read()*255+11); // random node value
andriym 78:43a6b54f0372 223 out.printf("Node: %d\r\n", this_node);
andriym 78:43a6b54f0372 224
andriym 78:43a6b54f0372 225 // Init radio
andriym 78:43a6b54f0372 226 radio.initialize(FREQUENCY, this_node, NETWORKID);
andriym 78:43a6b54f0372 227 #ifdef HIGH_POWER
andriym 78:43a6b54f0372 228 radio.setHighPower(true);
andriym 78:43a6b54f0372 229 #endif
elmbed 76:6638d83939d5 230 radio.encrypt(0);
elmbed 76:6638d83939d5 231 radio.promiscuous(promiscuousMode);
andriym 78:43a6b54f0372 232 radio.setFrequency(868000000);
AntonLS 11:d3aa5fca2330 233
andriym 78:43a6b54f0372 234 generate_name(rand_name, sizeof(rand_name));
andriym 78:43a6b54f0372 235 out.printf("Name: %s\r\n", rand_name);
andriym 78:43a6b54f0372 236 out.sleep(2.0);
andriym 78:43a6b54f0372 237
elmbed 76:6638d83939d5 238 t.start();
andriym 79:9db29f41dc9d 239 ledTeamA = myTeam & 1;
andriym 79:9db29f41dc9d 240 ledTeamB = ~myTeam & 1;
andriym 79:9db29f41dc9d 241 #ifdef NORDIC
andriym 79:9db29f41dc9d 242 buzzMed = 1;
andriym 79:9db29f41dc9d 243 #endif
andriym 78:43a6b54f0372 244
andriym 78:43a6b54f0372 245 Players players;
andriym 78:43a6b54f0372 246
andriym 78:43a6b54f0372 247 uint32_t last_send = t.read_ms();
andriym 78:43a6b54f0372 248 uint32_t last_shown = t.read_ms();
andriym 78:43a6b54f0372 249 //uint32_t min_wait = SEND_RATE_MS - 0.5*SEND_RATE_MS*SEND_DESYNC;
andriym 78:43a6b54f0372 250 //uint32_t send_wait = min_wait;
AntonLS 49:626e84ce5e52 251
elmbed 76:6638d83939d5 252 while (true)
AntonLS 19:afcbb425b3cf 253 {
andriym 79:9db29f41dc9d 254 // Read team button
andriym 79:9db29f41dc9d 255 bTeamNew = buttonTeam;
andriym 79:9db29f41dc9d 256 if(bTeamNew==PRESSED && bTeamOld==RELEASED) {
andriym 79:9db29f41dc9d 257 myTeam = (myTeam==1) ? 2 : 1;
andriym 79:9db29f41dc9d 258 ledTeamA = myTeam & 1;
andriym 79:9db29f41dc9d 259 ledTeamB = ~myTeam & 1;
andriym 78:43a6b54f0372 260 out.clear();
andriym 79:9db29f41dc9d 261 out.printf("New team: %d\r\n", myTeam);
andriym 78:43a6b54f0372 262 out.sleep(2);
andriym 78:43a6b54f0372 263 }
andriym 79:9db29f41dc9d 264 bTeamOld = bTeamNew;
andriym 79:9db29f41dc9d 265
andriym 79:9db29f41dc9d 266 // Read space button
andriym 79:9db29f41dc9d 267 bSpaceNew = buttonSpace;
andriym 79:9db29f41dc9d 268 if(bSpaceNew && !bSpaceOld) {
andriym 79:9db29f41dc9d 269 level = (level+1) & 0b11; // four states
andriym 79:9db29f41dc9d 270 if(level<=0) {
andriym 79:9db29f41dc9d 271 ledSpace5 = 1; ledSpace10 = 0; ledSpace15 = 0; ledSpace20 = 0;
andriym 79:9db29f41dc9d 272 } else if(level<=1) {
andriym 79:9db29f41dc9d 273 ledSpace5 = 0; ledSpace10 = 1; ledSpace15 = 0; ledSpace20 = 0;
andriym 79:9db29f41dc9d 274 } else if(level<=2) {
andriym 79:9db29f41dc9d 275 ledSpace5 = 0; ledSpace10 = 0; ledSpace15 = 1; ledSpace20 = 0;
andriym 79:9db29f41dc9d 276 } else {
andriym 79:9db29f41dc9d 277 ledSpace5 = 0; ledSpace10 = 0; ledSpace15 = 0; ledSpace20 = 1;
andriym 79:9db29f41dc9d 278 }
andriym 79:9db29f41dc9d 279 out.clear();
andriym 79:9db29f41dc9d 280 out.printf("New level: %d\r\n", level);
andriym 79:9db29f41dc9d 281 out.sleep(2);
andriym 79:9db29f41dc9d 282 }
andriym 79:9db29f41dc9d 283 bSpaceOld = bSpaceNew;
andriym 81:3cd7de5d01ef 284
andriym 81:3cd7de5d01ef 285 // Read volume buttons
andriym 82:1e552cc1a615 286 bVMNew = buttonVolMore.read();
andriym 82:1e552cc1a615 287 bVLNew = buttonVolLess.read();
andriym 81:3cd7de5d01ef 288 if(bVMNew && !bVMOld) {
andriym 81:3cd7de5d01ef 289 volume++;
andriym 81:3cd7de5d01ef 290 if(volume>3) volume=3;
andriym 81:3cd7de5d01ef 291 ledBuzzer = 1;
andriym 81:3cd7de5d01ef 292 out.clear();
andriym 81:3cd7de5d01ef 293 out.printf("New volume: %d\r\n", volume);
andriym 81:3cd7de5d01ef 294 out.sleep(2);
andriym 81:3cd7de5d01ef 295 }
andriym 81:3cd7de5d01ef 296 if(bVLNew && !bVLOld) {
andriym 81:3cd7de5d01ef 297 if(volume>0) volume--;
andriym 81:3cd7de5d01ef 298 if(!volume) ledBuzzer = 0;
andriym 81:3cd7de5d01ef 299 out.clear();
andriym 81:3cd7de5d01ef 300 out.printf("New volume: %d\r\n", volume);
andriym 81:3cd7de5d01ef 301 out.sleep(2);
andriym 81:3cd7de5d01ef 302 }
andriym 81:3cd7de5d01ef 303 bVMOld = bVMNew;
andriym 81:3cd7de5d01ef 304 bVLOld = bVLNew;
andriym 81:3cd7de5d01ef 305
andriym 81:3cd7de5d01ef 306 // Output
elmbed 76:6638d83939d5 307 unsigned long current_time = t.read_ms();
elmbed 76:6638d83939d5 308
andriym 79:9db29f41dc9d 309 if (current_time - last_shown > CYCLE_MS)
andriym 78:43a6b54f0372 310 {
andriym 81:3cd7de5d01ef 311 players.showAll(myTeam, level, volume);
andriym 78:43a6b54f0372 312 last_shown = current_time;
andriym 78:43a6b54f0372 313 }
andriym 78:43a6b54f0372 314
andriym 81:3cd7de5d01ef 315 // Radios
andriym 78:43a6b54f0372 316 if (current_time - last_send > SEND_RATE_MS)
AntonLS 19:afcbb425b3cf 317 {
elmbed 76:6638d83939d5 318 // Send message
andriym 79:9db29f41dc9d 319 snprintf(tx_buff, sizeof(tx_buff), "N=%s,%d", rand_name, myTeam);
andriym 78:43a6b54f0372 320 radio.send(EVERY_NODE, tx_buff, strlen(tx_buff));
andriym 78:43a6b54f0372 321 last_send = current_time;
andriym 78:43a6b54f0372 322 //send_wait = min_wait + (rand() % SEND_RATE_MS)*SEND_DESYNC;
andriym 78:43a6b54f0372 323
andriym 78:43a6b54f0372 324 //out.clear();
andriym 78:43a6b54f0372 325 //out.printf("Sent: %s\r\n", tx_buff);
andriym 78:43a6b54f0372 326 //uint8_t tempC = radio.readTemperature(-1); // -1 = user cal factor, adjust for correct ambient
andriym 78:43a6b54f0372 327 //uint8_t gain = (radio.readReg(REG_LNA) & 0b111000)>>3; // LNA Current Gain
andriym 78:43a6b54f0372 328 //uint32_t freq = radio.getFrequency();
andriym 78:43a6b54f0372 329 //out.printf("T: %d, G: %d\r\n", tempC, gain);
andriym 78:43a6b54f0372 330 //if(freq!=868000000) out.printf("Freq: %d\r\n", freq);
elmbed 76:6638d83939d5 331
andriym 81:3cd7de5d01ef 332 //beep(NOTE_A3, 0.05, volume);
elmbed 76:6638d83939d5 333 }
andriym 78:43a6b54f0372 334
elmbed 76:6638d83939d5 335 if (radio.receiveDone())
AntonLS 11:d3aa5fca2330 336 {
elmbed 76:6638d83939d5 337 memset(rx_buff, 0x00, sizeof(rx_buff));
elmbed 76:6638d83939d5 338 memcpy(rx_buff, (char*)radio.DATA, radio.DATALEN > sizeof(rx_buff)-1 ? sizeof(rx_buff)-1 : radio.DATALEN);
elmbed 76:6638d83939d5 339
andriym 78:43a6b54f0372 340 if(rx_buff[0]=='N' && rx_buff[1]=='=') {
andriym 78:43a6b54f0372 341 memcpy(other_name, rx_buff+2, NAME_LEN);
andriym 78:43a6b54f0372 342 other_name[5] = 0x00;
andriym 78:43a6b54f0372 343 if(sizeof(rx_buff)>8 && rx_buff[7]==',') {
andriym 79:9db29f41dc9d 344 otherTeam = rx_buff[8]-'0';
andriym 79:9db29f41dc9d 345 } else otherTeam = 1;
andriym 79:9db29f41dc9d 346 players.update(other_name, otherTeam, radio.RSSI, t.read_ms());
andriym 78:43a6b54f0372 347
andriym 78:43a6b54f0372 348 //uint8_t gain = (radio.readReg(REG_LNA) & 0b111000)>>3; // LNA Current Gain
andriym 78:43a6b54f0372 349 //out.clear();
andriym 78:43a6b54f0372 350 //out.printf("Other: %s\r\n", other_name);
andriym 78:43a6b54f0372 351 //out.printf("RSSI: %d, G: %d\r\n", radio.RSSI, gain);
andriym 78:43a6b54f0372 352
andriym 81:3cd7de5d01ef 353 //beep(NOTE_A5, 0.5, volume);
andriym 78:43a6b54f0372 354 } else { // received unknown signal
andriym 78:43a6b54f0372 355 uint8_t gain = (radio.readReg(REG_LNA) & 0b111000)>>3; // LNA Current Gain
andriym 78:43a6b54f0372 356 out.clear();
andriym 78:43a6b54f0372 357 out.printf("Got: %s\r\n", rx_buff);
andriym 78:43a6b54f0372 358 out.printf("RSSI: %d, G: %d\r\n", radio.RSSI, gain);
andriym 78:43a6b54f0372 359 out.sleep(2.0);
andriym 78:43a6b54f0372 360 }
AntonLS 11:d3aa5fca2330 361 }
AntonLS 0:28ca4562fe1a 362 }
elmbed 76:6638d83939d5 363 }