mirror of
https://github.com/bettse/seader.git
synced 2026-05-12 21:46:02 +00:00
836f91fad7
- Strengthened scratchpad bounds validation and ensured pointer range checks. - Improved memory management with fallback allocation and robust cleanup. - Adjusted SEADER_UART_RX_BUF_SIZE to 300 for better headroom. - Added safeguards against frame/header underflows in scratchpad handling. - Ensured proper alignment for UART worker and zero-copy transmission paths.
20 lines
265 B
Makefile
20 lines
265 B
Makefile
all: gitsub asn1 build
|
|
|
|
gitsub:
|
|
git submodule update --init --recursive
|
|
|
|
asn1:
|
|
asn1c -S ./lib/asn1/skeletons -D ./lib/asn1 -no-gen-example -no-gen-OER -no-gen-PER -pdu=all seader.asn1
|
|
|
|
build:
|
|
ufbt
|
|
|
|
launch:
|
|
ufbt launch
|
|
|
|
format:
|
|
ufbt format
|
|
|
|
clean:
|
|
rm -rf dist
|