7void log_pin(
const char *tag,
const __FlashStringHelper *prefix,
GPIOPin *pin) {
10 static constexpr size_t LOG_PIN_PREFIX_MAX_LEN = 32;
11 char prefix_buf[LOG_PIN_PREFIX_MAX_LEN];
12 strncpy_P(prefix_buf,
reinterpret_cast<const char *
>(prefix),
sizeof(prefix_buf) - 1);
13 prefix_buf[
sizeof(prefix_buf) - 1] =
'\0';