diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2020-04-17 16:23:28 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2020-05-15 15:36:16 -0700 |
| commit | 6aaab005c5f3a781fec229640c74bf44a601fc97 (patch) | |
| tree | d81d0c4d0387a15f8ea764ea31062d47527a4390 /ports/litex | |
| parent | 0d8bca92e208e705150097d26db6a5390dc9eb9b (diff) | |
Initial ESP32S2 port.
Basic blinky works but doesn't check pins.
Diffstat (limited to 'ports/litex')
| -rw-r--r-- | ports/litex/supervisor/port.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ports/litex/supervisor/port.c b/ports/litex/supervisor/port.c index 2297b15b1..4721d82fa 100644 --- a/ports/litex/supervisor/port.c +++ b/ports/litex/supervisor/port.c @@ -91,6 +91,10 @@ void reset_to_bootloader(void) { void reset_cpu(void) { } +supervisor_allocation* port_fixed_stack(void) { + return NULL; +} + uint32_t *port_heap_get_bottom(void) { return port_stack_get_limit(); } |
