mirror of
https://github.com/TokTok/c-toxcore
synced 2026-06-04 06:01:41 +00:00
6a895be0c7
It doesn't work, because esp32 has too little RAM (320KB). DHT is a 240KB struct, so even just allocating that immediately fails. We'll need to think carefully about trimming that if we ever want this to work on embedded devices.
5 lines
158 B
C++
5 lines
158 B
C++
#include <stdio.h>
|
|
|
|
// Bootstrap main. Only writes hello world. See ../main/ for the real thing.
|
|
extern "C" void app_main(void) { printf("Hello world!\n"); }
|