mbed-os/features/lorawan/lorastack/phy
Hasnain Virk c02774343a [IOTCELL-282] Code cleanup/simplification and rules
Baseline is changed to use a single set of data structures that simplifies the
code in the LoRaWANStack and Mac layer. We are now following certian rules for naming
data structures.

- All structures visible outside their domain are prefixed as 'lorawan_'
- All mac structures are prefixed as 'loramac_'
- All subsystem or module strucutures carry their name in prefix, like 'mcps_'

PHY layer still have legacy camel case data structures which will be entertained
later while we will be simplifying PHY layer.
Test cases are also updated with the new data structure naming conventions.

One major difference from the previous baseline is the removal of static buffer
from mcps indication. And we do not copy data from stack buffer to rx_msg buffer.
This saves at least 512 bytes.

It may look like now that if we have received something but the user have not read
from the buffer, then the buffer will be overwritten and we will lose previous frame.
Yes, we will. But the same will happen even if we would have copied the buffer into rx_msg
because then the rx_msg gets overwritten. So we decide to abandon copying the buffer at
multiple locations. We inform the user about reception, if the user doesn't read and
the data gets overwritten, then so be it.
2018-02-11 00:31:47 +02:00
..
LoRaPHY.cpp [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHY.h [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYAS923.cpp [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYAS923.h [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYAU915.cpp [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYAU915.h [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYCN470.cpp [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYCN470.h [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYCN779.cpp [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYCN779.h [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYEU433.cpp [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYEU433.h [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYEU868.cpp [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYEU868.h [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYIN865.cpp [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYIN865.h [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYKR920.cpp [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYKR920.h [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYUS915.cpp [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYUS915.h [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYUS915Hybrid.cpp [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
LoRaPHYUS915Hybrid.h [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00
lora_phy_ds.h [IOTCELL-282] Code cleanup/simplification and rules 2018-02-11 00:31:47 +02:00