aboutsummaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2017-05-01 15:37:49 -0400
committerPaul Selkirk <paul@psgd.org>2017-05-01 15:37:49 -0400
commit09b4960576a64647e27df25cd6b27e7f62ccc50c (patch)
tree471591a9bd7012e9e28862c05d0e1aa69ccb21ef /projects
parent0ebefa43c7e36b6ed95905d26144b0cca2721d60 (diff)
Addendum to commit e0e97a5: Remove all references to the tasker from cli-test.
Diffstat (limited to 'projects')
-rw-r--r--projects/cli-test/Makefile2
-rw-r--r--projects/cli-test/mgmt-test.c3
2 files changed, 1 insertions, 4 deletions
diff --git a/projects/cli-test/Makefile b/projects/cli-test/Makefile
index 0a0eb9e..189a15d 100644
--- a/projects/cli-test/Makefile
+++ b/projects/cli-test/Makefile
@@ -13,8 +13,6 @@ OBJS = \
test-mkmif.o \
test_sdram.o
-BOARD_OBJS += $(TOPLEVEL)/task.o
-
CFLAGS += -I$(LIBCLI_SRC) -I$(LIBHAL_SRC)
CFLAGS += -I$(RTOS_DIR)/rtos -I$(RTOS_DIR)/rtx/TARGET_CORTEX_M
diff --git a/projects/cli-test/mgmt-test.c b/projects/cli-test/mgmt-test.c
index 54021a5..59f0b6e 100644
--- a/projects/cli-test/mgmt-test.c
+++ b/projects/cli-test/mgmt-test.c
@@ -37,7 +37,6 @@
#include "stm-sdram.h"
#include "stm-fmc.h"
#include "stm-fpgacfg.h"
-#include "task.h"
#include "mgmt-cli.h"
#include "mgmt-test.h"
@@ -132,7 +131,7 @@ static int cmd_test_fmc(struct cli_def *cli, const char *command, char *argv[],
led_on(LED_BLUE);
while (! fpgacfg_check_done()) {
for (i = 0; i < 4; i++) {
- task_delay(500);
+ HAL_Delay(500);
led_toggle(LED_BLUE);
}
}
187'>187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258