Skip to content

Commit

Permalink
#495 Corrected constant for task prio. Added build flag to travis bui…
Browse files Browse the repository at this point in the history
…ld to make sure that code is built in the future.
  • Loading branch information
krichardsson committed Jan 13, 2020
1 parent 438f33e commit 6ef4c52
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Expand Up @@ -32,6 +32,10 @@ script:
- docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/make clean
- docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/build PLATFORM=cf2 LPS_TDOA3_ENABLE=1 "EXTRA_CFLAGS=-DLPS_2D_POSITION_HEIGHT=1.2 -DLPS_LONGER_RANGE" UNIT_TEST_STYLE=min

# Build Bigquad deck with all config options
- docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/make clean
- docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/build PLATFORM=cf2 "EXTRA_CFLAGS=-DENABLE_BQ_DECK -DBQ_DECK_ENABLE_OSD -DBQ_DECK_ENABLE_PM" UNIT_TEST_STYLE=min

# Build the tag platform
- docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/make clean
- docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/build PLATFORM=tag UNIT_TEST_STYLE=min
Expand Down
2 changes: 1 addition & 1 deletion src/deck/drivers/src/bigquad.c
Expand Up @@ -91,7 +91,7 @@ static void bigquadInit(DeckInfo *info)
uart1Init(115200);
mspInit(&s_MspObject, osdResponseCallback);
xTaskCreate(osdTask, BQ_OSD_TASK_NAME,
configMINIMAL_STACK_SIZE, NULL, BQ_DECK_TASK_PRI, NULL);
configMINIMAL_STACK_SIZE, NULL, BQ_OSD_TASK_PRI, NULL);
#endif

isInit = true;
Expand Down

0 comments on commit 6ef4c52

Please sign in to comment.