Skip to content

Commit 9314df2

Browse files
committed
Add mux support for Facet
1 parent 4198742 commit 9314df2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Firmware/RTK_Surveyor/System.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ void cyclePositionLEDs()
672672
//This allows NMEA, I2C, PPS/Event, and ADC/DAC to be routed through data port via software select
673673
void setMuxport(int channelNumber)
674674
{
675-
if (productVariant == RTK_EXPRESS || productVariant == RTK_EXPRESS_PLUS)
675+
if (productVariant == RTK_EXPRESS || productVariant == RTK_EXPRESS_PLUS || productVariant == RTK_FACET)
676676
{
677677
pinMode(pin_muxA, OUTPUT);
678678
pinMode(pin_muxB, OUTPUT);

Firmware/RTK_Surveyor/menuPorts.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ void menuPorts()
22
{
33
if (productVariant == RTK_SURVEYOR)
44
menuPortsSurveyor();
5-
else if (productVariant == RTK_EXPRESS || productVariant == RTK_EXPRESS_PLUS)
5+
else if (productVariant == RTK_EXPRESS || productVariant == RTK_EXPRESS_PLUS || productVariant == RTK_FACET)
66
menuPortsExpress();
77
}
88

0 commit comments

Comments
 (0)