Skip to content
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. Troubleshooting
  3. No RFM69 - No error

No RFM69 - No error

Scheduled Pinned Locked Moved Troubleshooting
6 Posts 4 Posters 1.6k Views 3 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Offline
    G Offline
    gloob
    wrote on last edited by gloob
    #1

    Hello,

    Currently I'm working on a gateway that uses the RFM69HW module with 868MHz.
    When I upload a sketch to my WeMos and no RFM is connected, it seems that there is no error in the init function.

    0;255;3;0;9;TSF:LRT:OK
    0;255;3;0;9;TSM:INIT
    0;255;3;0;9;TSF:WUR:MS=0
    0;255;3;0;9;TSM:INIT:TSP OK
    0;255;3;0;9;TSM:INIT:GW MODE
    0;255;3;0;9;TSM:READY:ID=0,PAR=0,DIS=0
    0;255;3;0;9;MCO:REG:NOT NEEDED
    

    Shouldn't there be any error that no RFM is connected correctly and could not be initialized?

    I tried everything with a minimal sketch:

    #define MY_DEBUG
    #define MY_BAUD_RATE 9600
    
    //#define MY_RADIO_NRF24
    #define MY_RADIO_RFM69
    
    #define MY_GATEWAY_ESP8266
    
    #define MY_ESP8266_SSID "earth"
    #define MY_ESP8266_PASSWORD ""
    
    #define MY_PORT 5003
    
    #include <ESP8266WiFi.h>
    #include <MySensors.h>
    
    void setup()
    {
    }
    
    void presentation()
    {
    	// Present locally attached sensors here
    }
    
    
    void loop()
    {
    	// Send locally attached sensors data here
    }
    

    When I use a NRF24 module in the sketch I get a correct error:

    0;255;3;0;9;TSF:LRT:OK
    0;255;3;0;9;TSM:INIT
    0;255;3;0;9;TSF:WUR:MS=0
    0;255;3;0;9;!TSM:INIT:TSP FAIL
    0;255;3;0;9;TSM:FAIL:CNT=1
    0;255;3;0;9;TSM:FAIL:PDT```
    tekkaT 1 Reply Last reply
    0
    • G gloob

      Hello,

      Currently I'm working on a gateway that uses the RFM69HW module with 868MHz.
      When I upload a sketch to my WeMos and no RFM is connected, it seems that there is no error in the init function.

      0;255;3;0;9;TSF:LRT:OK
      0;255;3;0;9;TSM:INIT
      0;255;3;0;9;TSF:WUR:MS=0
      0;255;3;0;9;TSM:INIT:TSP OK
      0;255;3;0;9;TSM:INIT:GW MODE
      0;255;3;0;9;TSM:READY:ID=0,PAR=0,DIS=0
      0;255;3;0;9;MCO:REG:NOT NEEDED
      

      Shouldn't there be any error that no RFM is connected correctly and could not be initialized?

      I tried everything with a minimal sketch:

      #define MY_DEBUG
      #define MY_BAUD_RATE 9600
      
      //#define MY_RADIO_NRF24
      #define MY_RADIO_RFM69
      
      #define MY_GATEWAY_ESP8266
      
      #define MY_ESP8266_SSID "earth"
      #define MY_ESP8266_PASSWORD ""
      
      #define MY_PORT 5003
      
      #include <ESP8266WiFi.h>
      #include <MySensors.h>
      
      void setup()
      {
      }
      
      void presentation()
      {
      	// Present locally attached sensors here
      }
      
      
      void loop()
      {
      	// Send locally attached sensors data here
      }
      

      When I use a NRF24 module in the sketch I get a correct error:

      0;255;3;0;9;TSF:LRT:OK
      0;255;3;0;9;TSM:INIT
      0;255;3;0;9;TSF:WUR:MS=0
      0;255;3;0;9;!TSM:INIT:TSP FAIL
      0;255;3;0;9;TSM:FAIL:CNT=1
      0;255;3;0;9;TSM:FAIL:PDT```
      tekkaT Offline
      tekkaT Offline
      tekka
      Admin
      wrote on last edited by
      #2

      @gloob This is a known limitation of the current RFM69 driver and has been addressed in the refactored (yet to be released) driver.

      1 Reply Last reply
      0
      • TON RIJNAARDT Offline
        TON RIJNAARDT Offline
        TON RIJNAARD
        wrote on last edited by
        #3

        Hello,

        I have the sam problem when i use te mysensors 2.1.1 i mus remove HW from the sketch.
        If i #define RFM 69HW place on the sketch i get the error that the RFM 69HW
        MySensors.h:328:2: error: #error No forward link or gateway feature activated. This means nowhere to send messages! Pretty pointless.

        Greatz Ton

        1 Reply Last reply
        0
        • E Offline
          E Offline
          emc2
          Hardware Contributor
          wrote on last edited by
          #4

          @tekka Is there a branch somewhere with this refactored driver to test?
          Seems there is something acting strange with RFM69 + esp8266

          tekkaT 1 Reply Last reply
          0
          • E emc2

            @tekka Is there a branch somewhere with this refactored driver to test?
            Seems there is something acting strange with RFM69 + esp8266

            tekkaT Offline
            tekkaT Offline
            tekka
            Admin
            wrote on last edited by
            #5

            @emc2 I'm working on this PR, but WIP and untested: https://github.com/mysensors/MySensors/pull/722

            1 Reply Last reply
            0
            • E Offline
              E Offline
              emc2
              Hardware Contributor
              wrote on last edited by
              #6

              Thanks!
              Will have a shot at it tonight to try to troubleshoot this.

              1 Reply Last reply
              0
              Reply
              • Reply as topic
              Log in to reply
              • Oldest to Newest
              • Newest to Oldest
              • Most Votes


              14

              Online

              11.7k

              Users

              11.2k

              Topics

              113.1k

              Posts


              Copyright 2025 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
              • Login

              • Don't have an account? Register

              • Login or register to search.
              • First post
                Last post
              0
              • MySensors
              • OpenHardware.io
              • Categories
              • Recent
              • Tags
              • Popular