Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix extra #endifs from merge
  • Loading branch information
Rodger Griffiths committed Jan 19, 2021
commit 0e342216e1a4d1cb699c62390f44ea0f2057d4d0
8 changes: 4 additions & 4 deletions esp32/mptask.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
#ifdef MOD_SIGFOX_ENABLED
#include "sigfox/modsigfox.h"
#endif
#endif
// #endif
#if defined (GPY) || defined (FIPY)
#include "modlte.h"
#endif
Expand Down Expand Up @@ -265,8 +265,8 @@ void TASK_Micropython (void *pvParameters) {
#ifdef MOD_SIGFOX_ENABLED
modsigfox_init0();
#endif
#endif
#endif
// #endif
// #endif
}

// initialize the serial flash file system
Expand All @@ -283,7 +283,7 @@ void TASK_Micropython (void *pvParameters) {
sigfox_update_private_key();
sigfox_update_public_key();
#endif
#endif
// #endif

// append the flash paths to the system path
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_flash));
Expand Down