Merge pull request #112 from ea/sdr_testing

typo in tx handler check
This commit is contained in:
Travis Goodspeed 2018-11-11 19:19:14 -05:00 committed by GitHub
commit e8e6520545
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -145,7 +145,7 @@ void app_packettx(uint8_t *packet, int len){
/* We send it to the active application, but only if that
application has a handler.
*/
if(!applet->packetrx){
if(!applet->packettx){
printf("No packet TX handler for %s.",
applet->name);
return;