Skip to content
This repository was archived by the owner on Jun 5, 2024. It is now read-only.

Commit 318004d

Browse files
committed
Fix wrong pointer declaration
1 parent 08e39bd commit 318004d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/WisBlock-API.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ extern char *region_names[];
306306
extern char g_at_query_buf[];
307307
bool user_at_handler(char *user_cmd, uint8_t cmd_size) __attribute__((weak));
308308
// extern atcmd_t g_user_at_cmd_list[] __attribute__((weak));
309-
extern atcmd_t *g_user_at_cmd_list;
309+
extern atcmd_t *g_user_at_cmd_list __attribute__((weak));
310310
extern uint8_t g_user_at_cmd_num __attribute__((weak));
311311
void at_settings(void);
312312
#ifdef ARDUINO_ARCH_RP2040

0 commit comments

Comments
 (0)