File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed
examples/tests/kv/kv_system Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 2222 - uses : actions/checkout@v2
2323 with :
2424 submodules : false # LVGL makefile manually installs the submodule
25- - uses : carlosperate/arm-none-eabi-gcc-action@v1
26- with :
27- release : ' 10.3-2021.07' # The arm-none-eabi-gcc release to use.
28- - name : setup-riscv-toolchain
29- run : sudo apt-get install -y gcc-riscv64-unknown-elf
3025 - name : ci-format
3126 run : pushd examples; ./format_all.sh || exit; popd
3227
4338 with :
4439 submodules : recursive
4540 - uses : carlosperate/arm-none-eabi-gcc-action@v1
46- with :
47- release : ' 10.3-2021.07' # The arm-none-eabi-gcc release to use.
41+ - run : arm-none-eabi-gcc --version
4842 - name : setup-riscv-toolchain
4943 run : sudo apt-get install -y gcc-riscv64-unknown-elf
5044 - name : ci-build
Original file line number Diff line number Diff line change 88#define DATA_LEN 32
99
1010uint8_t key_buf [KEY_LEN ] = "First Key" ;
11- uint8_t data_buf [DATA_LEN ] = "My secret key, that no one knows" ;
11+ uint8_t data_buf [DATA_LEN ] = "My secret key that no one knows" ;
1212uint8_t out_buf [DATA_LEN ] = "Just junk" ;
1313
1414static void kv_cb (int result ,
Original file line number Diff line number Diff line change @@ -91,6 +91,7 @@ override CPPFLAGS += -I$(TOCK_USERLAND_BASE_DIR)/libtock
9191
9292# Avoid failing in CI due to warnings in the library.
9393CPPFLAGS_$(LIBNAME) += -Wno-error
94+ CPPFLAGS_$(LIBNAME) += -Wno-implicit-function-declaration
9495
9596# Include the rules to build the library.
9697include $(TOCK_USERLAND_BASE_DIR ) /TockLibrary.mk
You can’t perform that action at this time.
0 commit comments