将字符串转换为MAC地址

时间:2018-02-12 19:56:32

标签: c++ arduino esp8266 esp32

在SPIFFS中的文件中,我将以#34; XX:XX:XX:XX:XX:XX"格式保存有关mac地址的信息。 当我读取文件时,我需要将它从STRING切换为十六进制值数组。

uint8_t* str2mac(char* mac){
  uint8_t bytes[6];
  int values[6];
  int i;
  if( 6 == sscanf( mac, "%x:%x:%x:%x:%x:%x%*c",&values[0], &values[1], &values[2],&values[3], &values[4], &values[5] ) ){
      /* convert to uint8_t */
      for( i = 0; i < 6; ++i )bytes[i] = (uint8_t) values[i];
  }else{
      /* invalid mac */
  } 
  return bytes;
}

wifi_set_macaddr(STATION_IF, str2mac((char*)readFileSPIFFS("/mac.txt").c_str()));

但我在代码中的错误

当我将AA:00:00:00:00:01放入档案时,我的ESP8266设置了29:D5:23:40:00:00

我需要帮助,谢谢

2 个答案:

答案 0 :(得分:5)

您正在返回一个指向“本地”变量的指针,即在该函数完成时其生命周期结束的变量。然后使用这样的指针是UB,例如,可能是你看到的行为。

为了克服这个问题,你可以将数组作为参数传递;然后调用者负责内存管理。 顺便说一句:您可以使用格式%hhx直接读入8位无符号数据类型:

int str2mac(const char* mac, uint8_t* values){
    if( 6 == sscanf( mac, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx",&values[0], &values[1], &values[2],&values[3], &values[4], &values[5] ) ){
        return 1;
    }else{
        return 0;
    }
}

int main() {

    uint8_t values[6] = { 0 };
    int success = str2mac("AA:00:00:00:00:01", values);
    if (success) {
        for (int i=0; i<6; i++) {
            printf("%02X:",values[i]);
        }
    }
}

答案 1 :(得分:0)

您的代码似乎与wifi_set_macaddr不兼容(我查找了API文档)。它期望一个uint8指向mac地址的指针,这意味着你编写它的方式不起作用(返回指向本地变量的指针等)。这是一个你应该能够适应你的purpouse的例子:

#include <iostream>
#include <fstream>

// mock up/print result
bool wifi_set_macaddr(uint8_t index, uint8_t *mac) 
{
    std::cout << "index: " << (int)index << " mac: "; 
    for (int i = 0; i < 6; ++i)
        std::cout << std::hex << (int)mac[i] << " ";
    std::cout << std::endl;

    return true;
}


// test file
void writeTestFile()
{   
    std::ofstream ofs("mac.txt");
    if (!(ofs << "AA:00:00:00:00:01" << std::endl))
    {
        std::cout << "File error" << std::endl;
    }
    ofs.close();
}

int main() 
{
    writeTestFile();

    uint8_t mac[6];
    int i = 0, x;

    std::ifstream ifs("mac.txt");
    for (; i < 6 && ifs >> std::hex >> x; ++i)
    {
        mac[i] = static_cast<uint8_t>(x);
        ifs.ignore();
    }

    if (i < 6)
    {
        std::cout << "File error or invalid MAC address" << std::endl;
        return 1;
    }

    wifi_set_macaddr(0x00, mac);

    return 0;
}

http://coliru.stacked-crooked.com/view?id=d387c628e590a467