dmbs
dmbs copied to clipboard
Dean's Makefile Build System - making MAKE easier.
I have the following files in my folder: ``` test.c test.cpp ``` Now I add them as `SRC += test.cpp`. If a `.c` file with the same name exists, it...
This was created especially for serial bootloaders. Sometimes it takes some time after reset for them to show up (CDC USB Bootloader). With this patch the module waits for the...
You can specify the path of the object files, but not the path of the other files (hex, bin, a, etc). It would be nice if you could safe them...
It would be nice if you could change the compiler to avr-g++ instead of avr-gcc for example. This is currently not working. I found an example online which might be...
I try to compile those files: ``` avrnacl_small/crypto_auth/hmac.c avrnacl_small/crypto_box/curve25519xsalsa20poly1305.c avrnacl_small/crypto_core/hsalsa20.c avrnacl_small/crypto_core/salsa20.c avrnacl_small/crypto_dh/curve25519.c avrnacl_small/crypto_hash/sha512.c avrnacl_small/crypto_hashblocks/sha512.c avrnacl_small/crypto_onetimeauth/poly1305.c avrnacl_small/crypto_scalarmult/curve25519.c avrnacl_small/crypto_secretbox/xsalsa20poly1305.c avrnacl_small/crypto_sign/ed25519.c avrnacl_small/crypto_sign/sc25519.c avrnacl_small/crypto_sign/precompute.c avrnacl_small/crypto_sign/ge25519.c avrnacl_small/crypto_stream/xsalsa20.c avrnacl_small/crypto_stream/salsa20.c avrnacl_small/crypto_verify/verify.c ``` But I get this error:...
For coding bootloader (with no API table at the end) it would make sense to add an error if a specific program size is reached. Then you can set the...