added utils

This commit is contained in:
adrcs 2025-01-29 11:17:14 -07:00 committed by GitHub
parent a9a3f739b4
commit a9b13d2c39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
85 changed files with 9213 additions and 0 deletions

20
rpi/stm32flash/Android.mk Normal file
View file

@ -0,0 +1,20 @@
TOP_LOCAL_PATH := $(call my-dir)
include $(call all-named-subdir-makefiles, parsers)
LOCAL_PATH := $(TOP_LOCAL_PATH)
include $(CLEAR_VARS)
LOCAL_MODULE := stm32flash
LOCAL_SRC_FILES := \
dev_table.c \
i2c.c \
init.c \
main.c \
port.c \
serial_common.c \
serial_platform.c \
stm32.c \
utils.c
LOCAL_STATIC_LIBRARIES := libparsers
include $(BUILD_EXECUTABLE)