像下面那样安全地返回C中的静态const变量的地址吗?
uint8_t *return_static_const_addr(void) { static const uint8_t values[2] = {0x01, 0x02}; return values; }