Terminal program for MailStation devices
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Makefile: use objcopy instead of hex2bin

+3 -5
+2 -2
Makefile
··· 76 76 $(SDCC) --no-std-crt0 --code-loc 0x8100 --data-loc 0x0000 -o ${.TARGET} $> 77 77 78 78 msterm.bin: msterm.ihx 79 - hex2bin msterm.ihx >/dev/null 79 + objcopy -Iihex -Obinary $> $@ 80 80 @if [ `stat -f '%z' ${.TARGET}` -gt 16384 ]; then \ 81 81 echo "${.TARGET} overflows a dataflash page, must be <= 16384"; \ 82 82 exit 1; \ 83 83 fi 84 84 85 85 upload: all 86 - nc -N 192.168.1.129 12345 < msterm.bin 86 + sudo ../../mailstation-tools/obj/sendload -p 0x4000 msterm.bin
+1 -3
README.md
··· 23 23 ### Compiling 24 24 25 25 Install 26 - [SDCC](http://sdcc.sourceforge.net/) 27 - and 28 - [hex2bin](https://sourceforge.net/projects/hex2bin/files/hex2bin/). 26 + [SDCC](http://sdcc.sourceforge.net/). 29 27 30 28 Create an `obj` directory with `mkdir obj` and then run `make`. 31 29