File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
libuavcan_drivers/lpc11c24/driver/src Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -154,6 +154,7 @@ BitTimingSettings computeBitTimings(std::uint32_t bitrate)
154154 case 500000 : return BitTimingSettings{ 0 , 0x1c05 }; // 16 quanta, 87.5%
155155 case 250000 : return BitTimingSettings{ 0 , 0x1c0b }; // 16 quanta, 87.5%
156156 case 125000 : return BitTimingSettings{ 0 , 0x1c17 }; // 16 quanta, 87.5%
157+ case 100000 : return BitTimingSettings{ 0 , 0x1c1d }; // 16 quanta, 87.5%
157158 default : return BitTimingSettings{ 0 , 0 };
158159 }
159160 }
@@ -174,7 +175,8 @@ uavcan::uint32_t CanDriver::detectBitRate(void (*idle_callback)())
174175 1000000 ,
175176 500000 ,
176177 250000 ,
177- 125000
178+ 125000 ,
179+ 100000
178180 };
179181
180182 const auto ListeningDuration = uavcan::MonotonicDuration::fromMSec (1050 );
You can’t perform that action at this time.
0 commit comments