Ayke

Results 74 issues of Ayke

Work in progress. Does not work yet. Some notes: - This requires some changes to TinyGo, look at the espnet branch: https://github.com/tinygo-org/tinygo/pull/2138 - The next step is probably defining all...

These constants were always a bit weird: * they use an uncommon name (TWI instead of I2C) * they don't follow Go naming conventions (CamelCase) * the constants don't provide...

This is useful because it allows using the WS2812 driver on platforms without bitbanged WS2812 support and it may be the only option if disabling interrupts is impossible or impractical....

Here is a starting point for interfaces that drivers should implement, to make it easier to write generic code. The goal is to get all drivers to implement generic interfaces...

Make use of a few new features in TinyGo: * Functions and globals in header files are supported. * Static functions are supported. This allows us to remove workarounds specifically...

I haven't investigated this issue yet, but I have bisected it. Recent versions of the bluetooth package fail on the Raspberry Pi (Debian 10.4, BlueZ 5.50): ``` $ go run...

bug
next-release
linux

This change depends on https://github.com/tinygo-org/tinygo/pull/1896.

This is especially useful to parse the `Offset` field of a `wasm.DataSegment`, which is usually just a constant.

This makes it slightly easier to use this package with recent Go versions.

The table type was not correctly parsed: the reftype byte wasn't read. This happened to allow the test to be parsed, but slightly incorrectly. Other wasm files cannot be parsed....