Florian Loitsch

Results 128 issues of Florian Loitsch

Currently we only fail when we try to flash. However, the envelope has all the information it needs to determine earlier that the flashing won't work.

I just got the following error: ``` ****************************************************************************** Decoding by `jag`, device has version ****************************************************************************** EXCEPTION error. DNS lookup exception Unexpected response: 80 0: DnsClient.decode_response_ /net/modules/dns.toit:277:34 1: DnsClient.get.. /net/modules/dns.toit:221:20 2:...

Currently the only way is to poll the touch sensor.

I got the following error message. ``` ****************************************************************************** Decoding by `jag`, device has version ****************************************************************************** EXCEPTION error. UNKNOWN ERROR 0x5(5) 0: espnow_send_ /esp32/espnow.toit:138:3 1: Service.send /esp32/espnow.toit:119:5 2: espnow_tx_task espnow1.toit:24:13 3:...

It looks like Toit doesn't support WPA2-enterprise

The following function takes ~100 seconds to copy the SDK (~385 files and 94MB). On Linux the whole test is finished in 3 seconds. ``` copy_directory --source/string --target/string: directory.mkdir --recursive...

We could bundle sigtool (https://github.com/thefloweringash/sigtool) for macos signing.

We are using `gmtime_s` and `localtime_s` on Windows. However, both of these functions don't accept negative seconds (since epoch), and thus don't work for dates before 1970. Currently neither the...

bug
good first issue
platform-windows

Currently, the `Time.from_string` doesn't parse all iso 8601 strings. Failing: ``` 2023-01-03T18:22:12.430015+00:00 // Doesn't support '+...' 2023-01-03T18:22:12.430015Z // Doesn't support '.' ```