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 22
22
- uses : actions/checkout@v2
23
23
with :
24
24
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
30
25
- name : ci-format
31
26
run : pushd examples; ./format_all.sh || exit; popd
32
27
43
38
with :
44
39
submodules : recursive
45
40
- 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
48
42
- name : setup-riscv-toolchain
49
43
run : sudo apt-get install -y gcc-riscv64-unknown-elf
50
44
- name : ci-build
Original file line number Diff line number Diff line change 8
8
#define DATA_LEN 32
9
9
10
10
uint8_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" ;
12
12
uint8_t out_buf [DATA_LEN ] = "Just junk" ;
13
13
14
14
static 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
91
91
92
92
# Avoid failing in CI due to warnings in the library.
93
93
CPPFLAGS_$(LIBNAME) += -Wno-error
94
+ CPPFLAGS_$(LIBNAME) += -Wno-implicit-function-declaration
94
95
95
96
# Include the rules to build the library.
96
97
include $(TOCK_USERLAND_BASE_DIR ) /TockLibrary.mk
You can’t perform that action at this time.
0 commit comments