We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Client/Middlewares/Third_Party/Lora/Mac/LoRaMac.h
Line 1020 in 8ec9c83
static TimerEvent_t SxNextBeaconTimer; 선언 안 함 https://github.com/snu-LoRaWan/Client/blob/fsm/Middlewares/Third_Party/Lora/Core/lora.c#L142
static TimerEvent_t SxNextBeaconTimer;
OnSxNextBeaconTimerEvent 함수 안 만듦
OnSxNextBeaconTimerEvent
static void OnSxNextBeaconTimerEvent( void ) { TimerStop( &SxNextBeaconTimer ); MibRequestConfirm_t mibReq; LoRaMacStatus_t status; mibReq.Type = MIB_NETWORK_JOINED; status = LoRaMacMibGetRequestConfirm( &mibReq ); if( status == LORAMAC_STATUS_OK ) { if( mibReq.Param.IsNetworkJoined == true ) { DeviceState = DEVICE_STATE_BEACON; NextTx = true; } else { DeviceState = DEVICE_STATE_JOIN; } } }
DEVICE_STATE_BEACON
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Client/Middlewares/Third_Party/Lora/Mac/LoRaMac.h
Line 1020 in 8ec9c83
에서 중복 코드 있음
static TimerEvent_t SxNextBeaconTimer;
선언 안 함 https://github.com/snu-LoRaWan/Client/blob/fsm/Middlewares/Third_Party/Lora/Core/lora.c#L142OnSxNextBeaconTimerEvent
함수 안 만듦DEVICE_STATE_BEACON
Core/lora.h에 정의 안 함The text was updated successfully, but these errors were encountered: