summaryrefslogtreecommitdiff
path: root/ports/zephyr/prj_base.conf
AgeCommit message (Collapse)Author
2019-10-13remove ports/zephyrDan Halbert
2018-05-21zephyr/prj_base.conf: Enable DHCP and group static IPs together.Paul Sokolovsky
Add CONFIG_NET_DHCPV4, which, after https://github.com/zephyrproject-rtos/zephyr/pull/5750 works as follows: static addresses are configured after boot, and DHCP requests are sent at the same time. If valid DHCP reply is received, it overrides static addresses. This setup works out of the box for both direct connection to a workstation (DHCP server usually is not available) and for connection to a router (DHCP is available and required).
2018-05-21zephyr/modzsensor: Zephyr sensor subsystem bindings.Paul Sokolovsky
2017-12-15zephyr/prj_base.conf: Bump MAIN_STACK_SIZE to let builtin testsuite run.Paul Sokolovsky
2017-11-28zephyr/prj_base.conf: Force zephyr.bin build output.Paul Sokolovsky
As useful for CI systems. 1.10 doesn't build .bin for qemu_* for example. Also, remove deprecated CONFIG_LEGACY_KERNEL option.
2017-10-07zephyr: Switch to interrupt-driven pull-style console.Paul Sokolovsky
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.
2017-10-07zephyr: Use CONFIG_NET_APP_SETTINGS to setup initial network addresses.Paul Sokolovsky
Ideally, these should be configurable from Python (using network module), but as that doesn't exist, we better off using Zephyr's native bootstrap configuration facility.
2017-09-06ports: Make new ports/ sub-directory and move all ports there.Damien George
This is to keep the top-level directory clean, to make it clear what is core and what is a port, and to allow the repository to grow with new ports in a sustainable way.