Skip to content

Commit

Permalink
compile error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
karasevia committed Feb 25, 2024
1 parent d4d5a81 commit c7b67bd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion eth_save_process.c
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ EthernetSaveConfig* ehternet_save_process_malloc() {

void ehternet_save_process_print(EthernetSaveConfig* config, const char* str) {
furi_assert(config);
FuriHalRtcDateTime datetime = {0};
DateTime datetime = {0};
furi_hal_rtc_get_datetime(&datetime);
storage_printf(
config->log_file,
Expand Down
3 changes: 0 additions & 3 deletions eth_worker_ping.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@
#include <furi_hal.h>
#include <ping.h>

uint8_t ping_count(uint8_t s, uint16_t pCount, uint8_t* addr);

void ping_wait_ms(int ms) {
furi_delay_ms(ms);
}

uint8_t ping_auto_interface(uint8_t* adress) {
return ping_auto(PING_SOCKET, adress);
// return ping_count(PING_SOCKET, 20, adress);
}

0 comments on commit c7b67bd

Please sign in to comment.