mirror of
https://github.com/xoseperez/espurna.git
synced 2026-03-04 07:24:20 +01:00
- share relay dummypin instance between relay objects, replace unique_ptr with basic pointer (as we never destroy things, everything is brought up on boot and is essentially static) - reduce overall size of the Api (web_api_t) structure, store a single required unsigned char id inside of the Api object itself. - drop std::function for the same reason, current implementation only needs a single u8 ID in all cases - tweak internal functions to expect a certain path size, drop strange comparisons with sprintf return value - (kind of a hack) add manual calls to vector<Api>::reserve() as we go over the current capacity and vector increases it's size times 2. e.g. for 9 relays, we would allocate space for 32 Api objects as vector size goes from 16 to 32, after we add 18 Api objects with relay + pulse - (breaking) json calls on a separate path, don't waste time encoding a single entity as json object when we can encode more things - rfbridge API learn will return the current status instead of a plain OK