Skip to content

Commit 5ecb939

Browse files
committed
Ran Linter
1 parent 221c9e1 commit 5ecb939

File tree

8 files changed

+12
-10
lines changed

8 files changed

+12
-10
lines changed

FprimeZephyrReference/Components/ComDelay/ComDelay.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ module Components {
4848
@Port to set the value of a parameter
4949
param set port prmSetOut
5050
}
51-
}
51+
}

FprimeZephyrReference/Components/ComDelay/docs/sdd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
| Name | Description |
1616
|---------|-----------------------------------------------------------|
17-
| DIVIDER | Number of rate group ticks received before sending status |
17+
| DIVIDER | Number of rate group ticks received before sending status |

FprimeZephyrReference/ReferenceDeployment/Top/ReferenceDeploymentTopology.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ void setupTopology(const TopologyState& state) {
7979

8080
// Uplink is configured for receive so a socket task is started
8181
// We dont need UART, as we are sending coms directly to lora
82-
//comDriver.configure(state.uartDevice, state.baudRate);
82+
// comDriver.configure(state.uartDevice, state.baudRate);
8383
lora.start(state.loraDevice);
8484
}
8585

FprimeZephyrReference/ReferenceDeployment/Top/topology.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ module ReferenceDeployment {
7070
connections Communications {
7171
lora.allocate -> ComCcsds.commsBufferManager.bufferGetCallee
7272
lora.deallocate -> ComCcsds.commsBufferManager.bufferSendIn
73-
73+
7474
# ComDriver <-> ComStub (Uplink)
7575
lora.dataOut -> ComCcsds.frameAccumulator.dataIn
7676
ComCcsds.frameAccumulator.dataReturnOut -> lora.dataReturnIn
@@ -113,7 +113,7 @@ module ReferenceDeployment {
113113
imuManager.temperatureGet -> lsm6dsoManager.temperatureGet
114114
}
115115

116-
116+
117117

118118
}
119119

FprimeZephyrReference/project/config/FpConfig.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,6 @@ extern "C" {
331331
#define FW_ASSERT_COUNT_MAX 4
332332
#endif
333333

334-
335334
// *** NOTE configuration checks are in Fw/Cfg/ConfigCheck.cpp in order to have
336335
// the type definitions in Fw/Types/BasicTypes available.
337336
#ifdef __cplusplus

FprimeZephyrReference/project/config/LoRaCfg.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
#include <zephyr/drivers/lora.h>
44
#include <Fw/FPrimeBasicTypes.hpp>
55
namespace LoRaConfig {
6-
const U32 FREQUENCY = 437400000; //!< LoRa frequency in Hz
6+
const U32 FREQUENCY = 437400000; //!< LoRa frequency in Hz
77
lora_signal_bandwidth BANDWIDTH = BW_125_KHZ; //!< LoRa bandwidth
88
const I8 TX_POWER = 14; //!< LoRa transmission power in dBm
99
const U16 PREAMBLE_LENGTH = 8; //!< LoRa preamble length
1010
U8 HEADER[] = {0, 0, 0, 0}; //!< LoRa header (not used)
1111
} // namespace LoRaConfig
12-
#endif // LORA_CFG_HPP
12+
#endif // LORA_CFG_HPP
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
import usb_cdc
2-
usb_cdc.enable(console=True, data=True)
2+
3+
usb_cdc.enable(console=True, data=True)

circuit-python-lora-passthrough/code.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
This code will forward any received LoRa packets to the serial console (sys.stdout). It cycles through neo pixel colors
55
to indicate packet reception.
66
"""
7+
78
import time
9+
10+
import adafruit_rfm9x
811
import board
912
import digitalio
10-
import adafruit_rfm9x
1113
import usb_cdc
1214

1315
# Radio constants

0 commit comments

Comments
 (0)