Article: Encode Sensor Data with CBOR

2022-01-09 Thread Lee, Lup Yuen
This article explains how we may encode Sensor Data with the TinyCBOR Library on NuttX... https://lupyuen.github.io/articles/cbor2 Up Next: Rust Embedded on NuttX :-) Lup

Re: Move to C99 for common code

2022-01-09 Thread Gregory Nutt
I think that eliminating some older architectures would be a good thing. There should be some criteria for selecting those: - The should be minimal ports with no extensive development, - They should not be popular or have been popular. - They should not have extensive board support - They should

Re: Move to C99 for common code

2022-01-09 Thread Petro Karashchenko
In general yes, but my main point was that I saw designated initializer list heavily used in drivers code that is intended to be common. Also there are some C99 features like inline functions in common code. So we need to make an effort and clean-up common code to get back C89 compatibility.

Re: Move to C99 for common code

2022-01-09 Thread Alan Carvalho de Assis
On 1/9/22, Nathan Hartman wrote: > On Sat, Jan 8, 2022 at 11:34 AM Alan Carvalho de Assis > wrote: > >> I agree! There are few places where designated initializer list are used >> in >> the common code (in arch/ and boards/ they can be used without further >> concern), so it can be fixed at no