aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/utils/serial_number.cpp
blob: 7fd0863d64d54ba202e994e9a26eec70dca87533 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Copyright 2020 Ettus Research, a National Instruments Brand
//
// SPDX-License-Identifier: GPL-3.0-or-later
//

#include <uhdlib/utils/serial_number.hpp>
#include <stdexcept>
#include <string>

namespace uhd
{
   bool serial_numbers_match(const std::string& serial_a, const std::string& serial_b)
   {
      try {
         const uint32_t a = std::stoi(serial_a, 0, 16);
         const uint32_t b = std::stoi(serial_b, 0, 16);
         return a == b;
      } catch (std::out_of_range& e) {
         return false;
      }
   }
}