mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-02-04 21:15:49 +00:00
* setChannel(ch, v) in Berry
* try
* t2
* b
* fx
* update to berry with autogenerated files
* Add debug to find out whether the submodule is really checked out
* Revert "Add debug to find out whether the submodule is really checked out"
This reverts commit 40ec2f6677.
* Add src/berry checkout to every build
* berry separate file p1
* #define ENABLE_OBK_BERRY 1 on Beken only
* Compile in obkSimulator
Compiles, but crashes in parser.
Seems like the Berry code has not been tested under MSVC2017.
* Checkout with submodules in obkSimulator workflow
* berry with ffs msvc fix
* berry autogen fiasco fix
* OpenBK7231T compiles from official berry, handle prebuild
Breaks obkSimulator
* Fix botched rebase on .gitmodules
* Build in msvc with a berry prebuild step (requires python)
* MSVC: also extend include directories for Release
* Fix BK723x build, extract common berry build rules into berry.mk
* Fix OpenBL602 build
This doesn't actually compile berry for OpenBL602, but makes compile
errors go away and marks where further work will be needed.
* working delayMs
Test Plan:
```
berry state = 1; var tick; def tick() state = 1 - state; channelSet(1, state); delayMs(1000, tick); end; tick();
```
can be stopped with `stopAllScripts`
* only use os_realloc on PLATFORM_BK7231T
* Move as much berry logic as possible out of cmd_script
* Guard more with ENABLE_OBK_BERRY
* upload script
* file operations & working import
* enough to implement "Advanced turn off after time with timer on UI and timer setting on UI and kept in flash"
* experiments
* clang-format -i src/berry/be_*.{h,c} src/cmnds/cmd_berry.c
* Remove redundant hfile != NULL
Calling with hfile == NULL would be bug in some other part of the code
* Don't checkout other submodules for simulator build
* remove stray debug & .user files
* Use be_newcomobj
* Build sim on linux
* build linux sim [2]
* threads & tests
* Leave enabled on Windows, disable on BEKEN
* SIM_RunWindow fix?
* allow "startScript test.be" as a shorthand for "berry import test" ??
* test?
* fix /
* test arg
* test2
* test
* test add
* fx
* test
* just checking if i can use import without module?
* test with module
* CMD_StopBerry fix?
* run obk command from berry? probably not good idea due to the stack size, will delay execution later?
* str arg
* test to see if i have to repeat import
* submit unfinished code
* concat tst
* more tests
* fix copy/paste mistake, add fib test
* fx
* channelSet
* fx
* try
* tester.fib(11)
* rename
---------
Co-authored-by: Tester23 <85486843+openshwprojects@users.noreply.github.com>
Co-authored-by: NonPIayerCharacter <18557343+NonPIayerCharacter@users.noreply.github.com>
86 lines
3.2 KiB
Makefile
86 lines
3.2 KiB
Makefile
OBK_DIR = $(TOP_DIR)/apps/$(APP_BIN_NAME)/
|
|
|
|
BERRY_SRCPATH = $(OBK_DIR)/libraries/berry/src/
|
|
|
|
# different frameworks put object files in different places,
|
|
# berry needs to add a rule to autogenerate some files before the object files
|
|
# are built, so it needs the translation function from a C source to an object
|
|
# file
|
|
define obj_from_c
|
|
$(patsubst %.c, %.o, $(1))
|
|
endef
|
|
|
|
include $(OBK_DIR)/libraries/berry.mk
|
|
|
|
SRC_C += $(BERRY_SRC_C)
|
|
|
|
ifeq ($(TARGET_PLATFORM),bk7231n)
|
|
|
|
CFG_USE_MQTT_TLS ?= 0
|
|
|
|
ifeq ($(CFG_USE_MQTT_TLS),1)
|
|
|
|
MBEDTLS_DIR = $(TOP_DIR)/apps/$(APP_BIN_NAME)/output/mbedtls-2.28.5
|
|
INCLUDES := -I$(MBEDTLS_DIR)/include -I$(TOP_DIR)/apps/$(APP_BIN_NAME)/src $(INCLUDES)
|
|
MQTT_TLS_DEFS += -DMQTT_USE_TLS=1
|
|
MQTT_TLS_DEFS += -DLWIP_ALTCP=1
|
|
MQTT_TLS_DEFS += -DLWIP_ALTCP_TLS=1
|
|
MQTT_TLS_DEFS += -DLWIP_ALTCP_TLS_MBEDTLS=1
|
|
MQTT_TLS_DEFS += -DMEMP_NUM_ALTCP_PCB=4
|
|
MQTT_TLS_DEFS += -DMBEDTLS_CONFIG_FILE='"user_mbedtls_config.h"'
|
|
CPPDEFINES += $(MQTT_TLS_DEFS) -Wno-misleading-indentation
|
|
OSFLAGS += $(MQTT_TLS_DEFS)
|
|
|
|
SRC_C += ./beken378/func/lwip_intf/lwip-2.1.3/src/apps/altcp_tls/altcp_tls_mbedtls.c
|
|
SRC_C += ./beken378/func/lwip_intf/lwip-2.1.3/src/apps/altcp_tls/altcp_tls_mbedtls_mem.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/ssl_tls.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/x509_crt.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/entropy.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/chachapoly.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/ctr_drbg.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/ssl_msg.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/debug.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/md.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/sha512.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/platform_util.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/sha256.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/sha1.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/ripemd160.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/md5.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/cipher.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/gcm.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/chacha20.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/ccm.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/constant_time.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/aes.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/poly1305.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/pem.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/des.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/asn1parse.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/base64_mbedtls.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/x509.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/oid.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/pkparse.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/ecp.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/bignum.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/pk.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/pk_wrap.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/ecdsa.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/asn1write.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/hmac_drbg.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/rsa.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/rsa_internal.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/ecp_curves.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/ssl_ciphersuites.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/ecdh.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/dhm.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/ssl_srv.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/cipher_wrap.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/arc4.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/blowfish.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/camellia.c
|
|
SRC_C += ${MBEDTLS_DIR}/library/ssl_cli.c
|
|
|
|
endif #ifeq ($(CFG_USE_MQTT_TLS),1)
|
|
endif #ifeq ($(TARGET_PLATFORM),bk7231n)
|