auto-sync

This commit is contained in:
rusEfi 2014-10-29 08:03:07 -05:00
parent 7c467c506c
commit 5f65104bf8
2 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
TEST_SRC_C = boards.c \
test_idle_controller.c
TEST_SRC_C = boards.c
TEST_SRC_CPP = test_util.cpp \
test_data_structures/test_event_registry.cpp \
test_basic_math/test_find_index.cpp \
test_basic_math/test_interpolation_3d.cpp \
test_data_structures/test_engine_math.cpp \
test_idle_controller.cpp \
test_trigger_decoder.cpp \
test_fuel_map.cpp \
engine_test_helper.cpp \

View File

@ -7,6 +7,6 @@
#include <stdio.h>
void idleDebug(char *msg, int value) {
void idleDebug(const char *msg, int value) {
printf("%s\r\n", msg);
}