stty ixoff enables host-side support of XON/XOFF flow control, rather than ixon
This commit is contained in:
parent
22dbf8658a
commit
53a0978529
2
Makefile
2
Makefile
|
|
@ -85,7 +85,7 @@ program: $(PROGRAM).hex
|
|||
@sleep 0.1
|
||||
@stty $(PROGBAUD) raw ignbrk hup < $(PROGPORT)
|
||||
$(AVRDUDE) -cstk500v1 -b$(PROGBAUD) -p$(MCU_TARGET) -P$(PROGPORT) -C$(AVRDUDECONF) -U flash:w:$^
|
||||
stty 115200 raw ignbrk -hup -echo ixon < $(PROGPORT)
|
||||
stty 115200 raw ignbrk -hup -echo ixoff < $(PROGPORT)
|
||||
|
||||
clean:
|
||||
rm -rf *.o *.elf *.lst *.map *.sym *.lss *.eep *.srec *.bin *.hex *.al *.i *.s *~
|
||||
|
|
|
|||
Loading…
Reference in New Issue