We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8c1cc06 + d049e58 commit 7a6c406Copy full SHA for 7a6c406
src/api/src/services/BinaryFlashingStrategy/DeviceDescriptionsLoader/index.ts
@@ -384,9 +384,12 @@ export default class DeviceDescriptionsLoader {
384
userDefines.push(
385
targetUserDefinesFactory.build(UserDefineKey.TLM_REPORT_INTERVAL_MS)
386
);
387
- userDefines.push(
388
- targetUserDefinesFactory.build(UserDefineKey.UART_INVERTED)
389
- );
+ // https://github.com/ExpressLRS/ExpressLRS-Configurator/issues/684
+ if (!config.platform.startsWith('esp32')) {
+ userDefines.push(
390
+ targetUserDefinesFactory.build(UserDefineKey.UART_INVERTED)
391
+ );
392
+ }
393
}
394
if (args.target.includes('.rx_')) {
395
0 commit comments