elsbiet

Results 12 issues of elsbiet

running the pgm -module(pr). -export([start/0, ping/1, pong/0]). ping(0) -> pong ! finished, erlang:display("ping finished"); ping(N) -> erlang:display("ping started"), pong ! {ping, self()}, erlang:display("ping sent"), receive pong -> erlang:display("Ping received pong")...

bug

.. lora.attach(lora.BAND868) lora.setAppEui("*******.. ") lora.setAppKey("**********..") lora.setDr(7) lora.setAdr(true) lora.setReTx(4) lora.join(lora.OTAA) lora.tx(false, 4, pack.pack(msg)) .. will crash the system (at least on my esp32) soon after waking up from cpu.sleep(10). if i...

as i just have leaned, the current version of webmachine depends on an outdated version of mochiweb (/mochi/mochiweb/issues/250). are there any plans to upgrade webmachine or should i refrain from...

executing ``` -module(pp). -export([start/0, ping/1, pong/0]). ping(0) -> pong ! finished, io:format("ping finished~n"); ping(N) -> pong ! {ping, self()}, % this does not work % whereis(pong) ! {ping, self()}, %...

i just ran into a problem when creating an returning a list from in a nif. nif_code: static term nif_test_cr8list(Context *ctx, int argc, term argv[]) { term result_list = term_nil();...

hello, there are 2 interfaces to the i2c-bus in avm_builtins: 1. portbased: components/avm_builtins/i2c_driver.c 2. nifbased: components/avm_builtins/i2c_resource.c (why both?) but why do atomvm_ssd1306.c, ssd1306_display_driver.c and ds3231.c implement their own interfaces? moreover...

because i am afraid i will soon run out of memory on my esp32 i would like to know how i can remove alisp (i don't need it).

as #2016 has been closed and i'm not allowed to reopen it. just as an info: math:Moniker(..) now calls Monikerf but my nif-implementation is still ~10% (~27% before the bugfix)...

from esp32 ``` {server, remote_node} ! ``` works as expected but ``` gen_server:call({server, remote_node}, ) ```` throws an exception ``` .. AtomVM/libs/estdlib/src/gen_server.erl"},{line,434}]}] ```

I have set up a small test environment. it consists of 1. esp32-s3 running AtomVm-0.7 2. ds3231 3. bme280 4. bh1750 5. gy512 6. ssd1306 7. sx1276 and wrote a...