Mike

Results 126 comments of Mike

@mostorer I have been unable to reproduce the issues you describe, but would really like to get to the bottom of this as it's clearly not an ideal first experience...

We need to make some improvements to rBoot (and RbootHttpUpdater) as they're not aware of the partition table. Critically, that means the rBoot configuration information and the partition table can...

Can you provide a little more detail so we can reproduce the issue?

JsonObjectStream uses an internal DynamicJsonDocument with a default capacity of 1024 bytes. The problem you describe occurs when the document is full and cannot allocate space for the final key/value...

@kwis2 You may find this helpful https://arduinojson.org/v6/api/jsonobject/subscript/

> > > I had a lot trouble with -DPROGMEM_L32="**attribute**((aligned(4))) **attribute**((section(".irom.text")))" ) > cmake really disliked the embedded space, and the quotes. I did get it working in the end...

I think you also need to add `-DMFORCE32=${MFORCE32}` to `target_compile_definitions`.

This is all looking very promising indeed! @aemseemann you mention the problem of _replicating (and keeping in sync!) some of sming's build logic (e. g. config options, compiler flags, dependencies)...

I've started looking at moving stuff out of the main makefiles into related components. This is what I have in mind: 1. Each Component has a `component.mk` file which defines...

> > > Does this approach mean that each _new_ app would rebuild libsming.a or would you still be able to reference a common libsming.a? Excellent question! So far there...