4514f073c1
While this console API improves handling on real hardware boards (e.g. clipboard paste is much more reliable, as well as programmatic communication), it vice-versa poses problems under QEMU, apparently because it doesn't emulate UART interrupt handling faithfully. That leads to inability to run the testsuite on QEMU at all. To work that around, we have to suuport both old and new console routines, and use the old ones under QEMU.
11 lines
246 B
Plaintext
11 lines
246 B
Plaintext
# Interrupt-driven UART console has emulation artifacts under QEMU,
|
|
# disable it
|
|
CONFIG_CONSOLE_PULL=n
|
|
|
|
# Networking drivers
|
|
# SLIP driver for QEMU
|
|
CONFIG_NET_SLIP_TAP=y
|
|
|
|
# Default RAM easily overflows with uPy and networking
|
|
CONFIG_RAM_SIZE=320
|