Remove const from tud_network_mac_address in example and test files

This commit is contained in:
Matt Mills
2023-03-22 07:30:46 -06:00
parent 4274cab395
commit 033627ee41
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@ void tud_network_init_cb(void) {
// client must provide this: 48-bit MAC address
// TODO removed later since it is not part of tinyusb stack
const uint8_t tud_network_mac_address[6] = {0};
uint8_t tud_network_mac_address[6] = {0};
//------------- NCM -------------//