mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
[hal] Fix I2C order on systemcore (#8024)
This commit is contained in:
@@ -25,8 +25,8 @@
|
||||
using namespace hal;
|
||||
|
||||
namespace {
|
||||
constexpr const char* physicalPorts[kNumI2cBuses] = {"/dev/i2c-1",
|
||||
"/dev/i2c-10"};
|
||||
constexpr const char* physicalPorts[kNumI2cBuses] = {"/dev/i2c-10",
|
||||
"/dev/i2c-1"};
|
||||
|
||||
struct I2C {
|
||||
wpi::mutex initMutex;
|
||||
|
||||
Reference in New Issue
Block a user