Skip to content

Commit 6621f3b

Browse files
committed
Basic esp-idf porting
1 parent ba1265d commit 6621f3b

16 files changed

+306
-865
lines changed

CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
set(COMPONENT_SRCDIRS "src/aes src/hal src/lmic")
2+
set(COMPONENT_ADD_INCLUDEDIRS "include")
3+
register_component()

component.mk

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#COMPONENT_OWNBUILDTARGET = 1
2+
COMPONENT_SRCDIRS := src/aes src/hal src/lmic
3+
COMPONENT_ADD_INCLUDEDIRS := include
4+
5+
#AES_OBJS = src/aes/lmic.o src/aes/other.o
6+
#HAL_OBJS = src/hal/hal.o
7+
#LMIC_OBJS = $(patsubst %.c,%.o,$(wildcard src/lmic/*.c))
8+
9+
#%.o : %.c
10+
# $(CC) -c $(CCFLAGS) $(CFLAGS) $< -o $@
11+
12+
#aes: $(AES_OBJS)
13+
14+
#hal: $(HAL_OBJS)
15+
16+
#lmic: $(LMIC_OBJS)
17+
18+
#build: aes hal lmic
19+
# $(CC) $(CCFLAGS) $(CFLAGS) $(AES_OBJS) $(HAL_OBJS) $(LMIC_OBJS) -o $(COMPONENT_LIBRARY)
20+
21+
#clean:
22+
# rm -f $(AES_OBJS) $(HAL_OBJS) $(LMIC_OBJS)

doc/LMiC-v1.5.pdf

-818 KB
Binary file not shown.

doc/README.txt

-4
This file was deleted.

doc/release-notes.txt

-28
This file was deleted.

examples/raw/raw.ino

-162
This file was deleted.

0 commit comments

Comments
 (0)