Skip to content

Commit fabfc3b

Browse files
hmm..
1 parent 205959f commit fabfc3b

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

general/src/lan8670.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -541,6 +541,8 @@ int32_t LAN8670_PLCA_WriteTOTMR(lan8670_t *lan, uint8_t data) {
541541
PRINTLN_ERROR("Failed to call mmd_write_register_field() (Status: %d).", status);
542542
return status;
543543
}
544+
545+
return LAN8670_STATUS_OK;
544546
}
545547

546548
int32_t LAN8670_Get_Link_State(lan8670_t *lan, uint8_t *state)

ner_environment/build_system/build_system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def build(profile: str = typer.Option(None, "--profile", "-p", callback=unsuppor
6464
run_command_docker('cmake --build build --target clean ; find . -type d -name "build" -exec rm -rf {} +')
6565
print("[#cccccc](ner build):[/#cccccc] [green]Ran build-cleaning command.[/green]")
6666
else:
67-
run_command_docker("mkdir -p build && cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=cmake/gcc-arm-none-eabi.cmake .. && cmake --build .", stream_output=True)
67+
run_command_docker("mkdir -p build && cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=cmake/gcc-arm-none-eabi.cmake .. && cmake --build .", stream_output=True)
6868
run_command_docker('chmod 777 -R ./build/*')
6969
else: # Repo uses Make, so execute Make commands.
7070
print("[#cccccc](ner build):[/#cccccc] [blue]Makefile-based project detected.[/blue]")

0 commit comments

Comments
 (0)