Bas van den Berg

Results 10 issues of Bas van den Berg

Does anyone see issues with the current .clang-format file?

enhancement

This is not so much an issues as a discussion, before we start implementation, since I couldn't find a forum for this. We would like to completely disable Nimble and...

We have an NRF5340 device running Nimble Peripheral. It has a COC server and a GATT server. We connect from a PC application and the device starts streaming data to...

Hi, I'm trying to make the Lattice Icecube2 image, but get the following error: make unzip iCEcube2setup_Dec_10_2020_2012_lin.zip Archive: iCEcube2setup_Dec_10_2020_2012_lin.zip inflating: iCEcube2setup_Dec_10_2020_2012 ... Building installer image... Error response from daemon: No...

We are streaming data as fast as possible over BLE using the ble_gatts_notify_custom call with a payload of 240 bytes. Our connection interval is 6 (=7.5 ms), so around 133...

``` type Foo struct { u32 a : 1; u32 b : 3; } Foo f1 = { 1, 2 } // ok Foo f2 = { .a=1, .b=2 }...

bug

force use of parenthesis for unclear expressions: a < b < c a & 7 + 1

enhancement

The last byte of a binary embed (const u8[]) is set to 0. This comes from the fact that it is stored inside a string literal inside the AST, since...

The following fragments passes the analyser, but fails in C compilation. ``` module test; type Kind enum u8 { A, B, C } fn bool Kind.isA(Kind k) { return k...

bug