typo in tx handler check

This commit is contained in:
ea 2018-11-11 17:42:55 -06:00
parent 38c171b6b0
commit 2466e98877

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;