How do I make this work:
void foo(uint8_t a[]) { ... } foo({0x01, 0x02, 0x03});
It gives me an error:
error: cannot conver
foo(std::array{0x01, 0x02, 0x03}.data());