Skip to content

Commit

Permalink
Use functions from ROM where possible
Browse files Browse the repository at this point in the history
    PUBLISHED_FROM=b7470154a2dad5661b86ff54506cd37a16763192
  • Loading branch information
Deomid Ryabkov authored and Marko Mikulicic committed Sep 3, 2015
1 parent f864759 commit 40892b7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion platforms/cc3200/Makefile.build
Expand Up @@ -54,7 +54,7 @@ V7_MEMORY_FLAGS = -DMBUF_SIZE_MULTIPLIER=1 \
-DV7_STACK_SIZE=16384 -DV7_DISABLE_INTERPRETER_STACK_CHECK \
-DFS_MAX_OPEN_FILES=5

SDK_FLAGS = -DUSE_FREERTOS -DSL_PLATFORM_MULTI_THREADED
SDK_FLAGS = -DTARGET_IS_CC3200 -DUSE_FREERTOS -DSL_PLATFORM_MULTI_THREADED

DISABLED_SDK_WARNINGS = -Wno-missing-braces -Wno-strict-aliasing -Wno-parentheses -Wno-unused-variable

Expand Down
1 change: 1 addition & 0 deletions platforms/cc3200/cc3200_fs.c
Expand Up @@ -6,6 +6,7 @@

#include "hw_types.h"
#include "hw_memmap.h"
#include "rom.h"
#include "rom_map.h"
#include "uart.h"

Expand Down
1 change: 1 addition & 0 deletions platforms/cc3200/cc3200_leds.c
Expand Up @@ -5,6 +5,7 @@
#include "gpio.h"
#include "pin.h"
#include "prcm.h"
#include "rom.h"
#include "rom_map.h"

void cc3200_leds_init() {
Expand Down
1 change: 1 addition & 0 deletions platforms/cc3200/cc3200_libc.c
Expand Up @@ -7,6 +7,7 @@

#include "hw_types.h"
#include "hw_memmap.h"
#include "rom.h"
#include "rom_map.h"
#include "uart.h"
#include "utils.h"
Expand Down
1 change: 1 addition & 0 deletions platforms/cc3200/cc3200_sj_hal.c
Expand Up @@ -3,6 +3,7 @@

#include "hw_types.h"
#include "prcm.h"
#include "rom.h"
#include "rom_map.h"

#include "simplelink.h"
Expand Down
1 change: 1 addition & 0 deletions platforms/cc3200/main.c
Expand Up @@ -11,6 +11,7 @@
#include "interrupt.h"
#include "pin.h"
#include "prcm.h"
#include "rom.h"
#include "rom_map.h"
#include "uart.h"
#include "utils.h"
Expand Down

0 comments on commit 40892b7

Please sign in to comment.