Skip to content

Commit 721c230

Browse files
committed
Adjusted MAC config
1 parent 4b2f307 commit 721c230

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

lib/LoadComms/LoadComms.cpp

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ std::atomic<uint_fast32_t> LoadComms::bytesReceived = 0;
2323
/**
2424
* @brief MAC address of the nacelle controller.
2525
*/
26-
// const uint8_t NACELLE_MAC[] = {0x30, 0xED, 0xA0, 0xE0, 0x6B, 0x78}; //
27-
// Slightly questionable controller
28-
const uint8_t NACELLE_MAC[] = {0xD0, 0xCF, 0x13,
29-
0xEA, 0x4A, 0x08}; // N's personal C5
26+
const uint8_t CPWP_DF2C5_A[] = {0x30, 0xED, 0xA0, 0xE0, 0x6B, 0x78};
27+
// Slightly questionable controller (?)
28+
const uint8_t BSI_DF2C5[] = {0xD0, 0xCF, 0x13, 0xEA, 0x4A, 0x08};
29+
30+
const uint8_t *NACELLE_MAC = CPWP_DF2C5_A;
3031

3132
/**
3233
* @brief Pointer to instance for static callbacks.

lib/LoadComms/LoadComms.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* @brief MAC address of the nacelle controller.
3131
*/
32-
extern const uint8_t NACELLE_MAC[];
32+
extern const uint8_t *NACELLE_MAC;
3333

3434
/**
3535
* @brief Communication timeout threshold in milliseconds.

0 commit comments

Comments
 (0)