Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Add Waveshare Pico-LoRa-SX1262-868M support #15

Open
wants to merge 13 commits into
base: main
Choose a base branch
from

Commits on Jan 12, 2022

  1. Configuration menu
    Copy the full SHA
    219b4b3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5f188bf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5494cda View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b78b5a8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    73e999a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    675f502 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2e24b8f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e6b7013 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ecd1491 View commit details
    Browse the repository at this point in the history
  10. Add alternative, inactive pin config for Waveshare SX1262 module to e…

    …xamples:
    
    	- hello_abp
    	- hello_otaa examples
    	- otaa_temperature_led
    ThomasLeister committed Jan 12, 2022
    Configuration menu
    Copy the full SHA
    bda1ce8 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2022

  1. EepromMcuReadBuffer: Read back from cache

    Read back information from cache instead of flash.
    The cache contains  the latest context, whereas
    the flash is only updated periodically.
    
    This could cause issues if the flash is not (yet) updated
    while the context has been updated in the meantime and values are read
    by LoRaMAC.
    
    Therefore just read from flash initially after startup (EepromMcuInit())
    and rely on write cache later.
    
    This commit effectively makes commit  e31d3c1
    work for me and therefore is a fix. Previous attemps to use commit
    e31d3c1... without this commit failed. Error message: "Duty cycle restricted".
    
    The error message might not appear at the first startup, but will
    appear if Raspberry Pi Pico is restarted and values from "EEPROM" /
    Flash have been read.
    ThomasLeister committed Jan 16, 2022
    Configuration menu
    Copy the full SHA
    85b818b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8a7ab0a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5726f72 View commit details
    Browse the repository at this point in the history