Skip to content

Commit c3f3914

Browse files
committed
Version 0.8.1
1 parent c669198 commit c3f3914

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

command_interface.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ void command_interface_process_byte(char incoming)
246246
}
247247
else if(strncmp(command_input_buffer, "version", 7) == 0)
248248
{
249-
sprintf((char *)command_response_buffer, "version,0.8.0,beta");
249+
sprintf((char *)command_response_buffer, "version,0.8.1,beta");
250250
m_ble_tx_logbuffer(command_response_buffer, strlen((const char *)command_response_buffer));
251251
}
252252
else if(strncmp(command_input_buffer, "getcfg", 6) == 0)

main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2430,7 +2430,7 @@ int main(void) {
24302430
#endif
24312431

24322432
// GotchiNet Registration Code
2433-
NRF_LOG_INFO("GotchiNet: %d", abs(NRF_FICR->DEVICEID[1] ^ NRF_FICR->DEVICEADDR[1]));
2433+
NRF_LOG_INFO("GotchiNet: %d", abs(NRF_FICR->DEVICEID[1] ^ NRF_FICR->DEVICEADDR[1]));
24342434
NRF_LOG_FLUSH();
24352435

24362436
// BLE PIN CODE

0 commit comments

Comments
 (0)