Bas Stottelaar

Results 41 comments of Bas Stottelaar

Initial support is in [my tree](https://github.com/basilfx/RIOT/tree/feature/arch_pro/boards/seeeduino_arch-pro), based on the mbed LPC1768 board. It uses OpenOCD for flashing, as it was already supported by RIOT-OS. The firmware needs a checksum, for...

Support for Seeeduino Arch Pro was merged in RIOT-OS (https://github.com/RIOT-OS/RIOT/pull/5555). It should now be possible to run `BOARD=seeeduino_archo-pro make` to compile. I believe @toonst had some time left in Berlin...

Found some time to work on this again. I followed up on the work of @toonst, but took a different route: I wrote a picoTCP device driver that wraps a...

Sure. In RIOT-OS, network interfaces (wireless, wired, emulated) can implement a so-called `netdev2` driver. This [driver](https://github.com/RIOT-OS/RIOT/blob/master/drivers/include/net/netdev2.h#L130) exports a some methods and can be configured using get/set methods using pre-defined [options](https://github.com/RIOT-OS/RIOT/blob/master/sys/include/net/netopt.h)....

@frederikvs Thanks for the explanation. I already assumed that using `pico_mm`, the allocations would be constant. So here is my dirty implementation: ``` c #include #include #include "bitfield.h" #include "assert.h"...

As an alternative: move this to advanced settings (next to debug level etc.)?

I was triggered by a log line about code signing in the logging above. I therefore tried the following: - Create self-signed code signing certificate: https://stackoverflow.com/a/58363510/1423623 - Navigate to the...

Well, react-bootstrap 0.30.0 now breaks compatibility with react-bootstrap-validation. Can confirm #67 works.

That seems to do the trick, thanks!

Reopening this, because it doesn't seem to really 'solve' the issue. When I add `[EmbeddedResource]`, I now also have to specify `apiVersion` and `kind` properties. These are not defined for...