Skip to content

Commit 5be88bd

Browse files
authored
Merge pull request #12 from sparkfun/develop
Develop
2 parents e24603c + 9bc3eb2 commit 5be88bd

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

.github/workflows/build-iotnode-lorawan.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# checkout flux-sdk
2828
- name: Checkout the flux-sdk
2929
run: |
30-
git clone --branch release/iot-node-lorawan-release https://github.com/sparkfun/flux-sdk.git
30+
git clone --branch release/iot-node-lorawan-release-v1.0.0 https://github.com/sparkfun/flux-sdk.git
3131
echo "FLUX_SDK_PATH=`pwd`/flux-sdk" >> $GITHUB_ENV
3232
3333
# Run cmake - this will build a custom SparkFun_Flux library we can use with
@@ -86,7 +86,7 @@ jobs:
8686
--export-binaries --clean --library `pwd`/SparkFun_IoTNodeLoRaWAN
8787

8888
# Upload the build files - bootloader, paritions, firmware
89-
- uses: actions/upload-artifact@v3
89+
- uses: actions/upload-artifact@v4
9090
with:
9191
name: Upload Build
9292
path: sfeIoTNodeLoRaWAN/build/rp2040.rp2040.sparkfun_iotnode_lorawanrp2350/sfeIoTNodeLoRaWAN.ino.uf2

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Firmware and associated Documentation and Firmware for the SparkFun IoT Node - L
88
![Release](https://img.shields.io/github/v/release/sparkfun/sfe-iot-node-lorawan)
99
![Release Date](https://img.shields.io/github/release-date/sparkfun/sfe-iot-node-lorawan?display_date=published_at)
1010
![Documentation - build](https://img.shields.io/github/actions/workflow/status/sparkfun/sfe-iot-node-lorawan/pages%2Fpages-build-deployment?label=Documentation)
11-
[![IoT Node - LoRaWAN - build](https://github.com/sparkfun/sfe-iot-node-lorawan/actions/workflows/build-iotnode-lorawan-develop.yml/badge.svg)](https://github.com/sparkfun/sfe-iot-node-lorawan/actions/workflows/build-iotnode-lorawan-develop.yml)
11+
[![IoT Node - LoRaWAN - build](https://github.com/sparkfun/sfe-iot-node-lorawan/actions/workflows/build-iotnode-lorawan.yml/badge.svg)](https://github.com/sparkfun/sfe-iot-node-lorawan/actions/workflows/build-iotnode-lorawan.yml)
1212
![GitHub issues](https://img.shields.io/github/issues/sparkfun/sfe-iot-node-lorawan)
1313

1414
This repository contains the latest firmware for the SparkFun IoT Node - LoRaWAN development board. While the IoT Node - LoRaWAN development board is programmable using Arduino, the IoT Node - LoRa board ships with a firmware application that enables rapid sensor definition and deployment on a Digi LoRaWAN XON network. This repository contains the source for this LoRaWAN application and well as firmware releases.

sfeIoTNodeLoRaWAN/sfeIoTNodeLoRaWAN.cpp

+17-2
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,11 @@ uint8_t sfeIoTNodeLoRaWAN::get_logTypeSer(void)
500500
{
501501
return _logTypeSer;
502502
}
503-
//---------------------------------------------------------------------------
503+
/**
504+
* @brief Sets the log type for serial output
505+
*
506+
* @param[in] logType The log type
507+
*/
504508
void sfeIoTNodeLoRaWAN::set_logTypeSer(uint8_t logType)
505509
{
506510
if (logType == _logTypeSer)
@@ -521,11 +525,22 @@ void sfeIoTNodeLoRaWAN::set_logTypeSer(uint8_t logType)
521525

522526
//---------------------------------------------------------------------------
523527
// local/board name things
528+
/**
529+
* @brief Getter for the the local name property
530+
*
531+
* @return The local name.
532+
*/
533+
524534
std::string sfeIoTNodeLoRaWAN::get_local_name(void)
525535
{
526536
return flux.localName();
527537
}
528538
//---------------------------------------------------------------------------
539+
/**
540+
* @brief Setter for the local name property
541+
*
542+
* @param[in] name The name
543+
*/
529544

530545
void sfeIoTNodeLoRaWAN::set_local_name(std::string name)
531546
{
@@ -730,7 +745,7 @@ void sfeIoTNodeLoRaWAN::checkBatteryLevels(void)
730745
}
731746

732747
//---------------------------------------------------------------------------
733-
// Terminal Baudrate things
748+
// Terminal Baud-rate things
734749
//---------------------------------------------------------------------------
735750
uint32_t sfeIoTNodeLoRaWAN::get_termBaudRate(void)
736751
{

0 commit comments

Comments
 (0)