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. [Solved]UPL:Fail

[Solved]UPL:Fail

Scheduled Pinned Locked Moved Troubleshooting
47 Posts 7 Posters 15.2k Views 5 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.
  • X Offline
    X Offline
    xefil
    wrote on last edited by
    #19

    Do you have some spare-parts to use a different radio? My gateway has a radio with nrf24l01+pa+lna to increase the range. Maybe the gain is needed with the new API? I don't know. How far are the two objects?

    Simon

    1 Reply Last reply
    0
    • Pictor LallemandP Offline
      Pictor LallemandP Offline
      Pictor Lallemand
      wrote on last edited by
      #20

      the gateway and the remote sensors are 100 cm I use these nRF24L01 I'm beginner with mysensors. I'm really frustrated that it does not work properly malgrer all my efforts to get it working properly alt text

      tekkaT 1 Reply Last reply
      0
      • Pictor LallemandP Pictor Lallemand

        the gateway and the remote sensors are 100 cm I use these nRF24L01 I'm beginner with mysensors. I'm really frustrated that it does not work properly malgrer all my efforts to get it working properly alt text

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

        @Pictor-Lallemand

        Lets start with a simple setup:

        • all radio caps >= 22uF (ideal 100uF)
        • latest MySensors lib (i.e. 2.0.0)

        Gateway - Program GatewaySerial from the MySensors examples
        Node - Program this simple sketch:

        #define MY_DEBUG 
        #define MY_RADIO_NRF24
        #define MY_NODE_ID 100
        
        #include <MySensors.h>
        
        MyMessage msgGeneral(0, V_VAR1);
        uint32_t counter = 0, lastSend = 0;
        uint8_t rebootCounter = 5;
        
        void presentation() {
          sendSketchInfo("TestNode", "1.0");
          present(0, S_ARDUINO_NODE, "Counter");
        }
        
        void loop() {
           if (millis() - lastSend > 500) {
              msgGeneral.setDestination(GATEWAY_ADDRESS);
              send(msgGeneral.set(counter), true);
              counter = 0;
              lastSend = millis();
              if(!rebootCounter--) {
                hwReboot();
              }
           }
           counter++;
        }
        

        ...and post the debug log from both, GW and node.

        1 Reply Last reply
        0
        • hensingH Offline
          hensingH Offline
          hensing
          wrote on last edited by
          #22

          same problem here:
          minimal example worked and I figured out that assignment of an ID helps :)
          Maybe I missed this point that I have to and that auto assignment doesn't work the way I thought.

          tekkaT 1 Reply Last reply
          0
          • hensingH hensing

            same problem here:
            minimal example worked and I figured out that assignment of an ID helps :)
            Maybe I missed this point that I have to and that auto assignment doesn't work the way I thought.

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

            @hensing said:

            same problem here:
            minimal example worked and I figured out that assignment of an ID helps :)
            Maybe I missed this point that I have to and that auto assignment doesn't work the way I thought.

            Ok, so not related to UPL:Fail (as the title of this topic suggests)?

            1 Reply Last reply
            0
            • Pictor LallemandP Offline
              Pictor LallemandP Offline
              Pictor Lallemand
              wrote on last edited by
              #24

              i add 22uF capacitor to node and GW

              debug gw

              0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
              0;255;3;0;9;TSM:INIT
              0;255;3;0;9;TSM:RADIO:OK
              0;255;3;0;9;TSM:GW MODE
              0;255;3;0;9;TSM:READY
              0;255;3;0;14;Gateway startup complete.
              0;255;0;0;18;2.0.0
              0;255;3;0;9;No registration required
              0;255;3;0;9;Init complete, id=0, parent=0, distance=0, registration=1
              0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
              0;255;3;0;9;TSP:MSG:BC
              0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
              0;255;3;0;9;TSP:CHKUPL:OK
              0;255;3;0;9;TSP:MSG:GWL OK
              0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
              0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
              0;255;3;0;9;TSP:MSG:BC
              0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
              0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
              0;255;3;0;9;TSP:MSG:GWL OK
              0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
              0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
              0;255;3;0;9;TSP:MSG:BC
              0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
              0;255;3;0;9;TSP:CHKUPL:OK
              0;255;3;0;9;TSP:MSG:GWL OK
              0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
              0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
              0;255;3;0;9;TSP:MSG:BC
              0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
              0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
              0;255;3;0;9;TSP:MSG:GWL OK
              0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
              0;255;3;0;9;TSP:SANCHK:OK
              

              debug node

              Starting sensor (RNNNA-, 2.0.0)
              TSM:INIT
              TSM:RADIO:OK
              TSP:ASSIGNID:OK (ID=100)
              TSM:FPAR
              TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
              TSM:FPAR
              TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
              TSM:FPAR
              TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
              TSM:FPAR
              TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
              !TSM:FPAR:FAIL
              !TSM:FAILURE
              TSM:PDT
              TSM:INIT
              TSM:RADIO:OK
              TSP:ASSIGNID:OK (ID=100)
              TSM:FPAR
              TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
              TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
              TSP:MSG:FPAR RES (ID=0, dist=0)
              TSP:MSG:PAR OK (ID=0, dist=1)
              TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
              TSP:MSG:FPAR RES (ID=0, dist=0)
              TSM:FPAR:OK
              TSM:ID
              TSM:CHKID:OK (ID=100)
              TSM:UPL
              TSP:PING:SEND (dest=0)
              !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
              TSP:CHKUPL:FAIL (hops=255)
              !TSM:UPL:FAIL
              TSM:FPAR
              TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
              TSM:FPAR
              TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
              TSM:FPAR
              TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
              TSM:FPAR
              TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
              !TSM:FPAR:FAIL
              !TSM:FAILURE
              TSM:PDT
              

              I'm really frustrated that it does not work correctly yet I applied literally your sugestions

              tekkaT 1 Reply Last reply
              0
              • Pictor LallemandP Pictor Lallemand

                i add 22uF capacitor to node and GW

                debug gw

                0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
                0;255;3;0;9;TSM:INIT
                0;255;3;0;9;TSM:RADIO:OK
                0;255;3;0;9;TSM:GW MODE
                0;255;3;0;9;TSM:READY
                0;255;3;0;14;Gateway startup complete.
                0;255;0;0;18;2.0.0
                0;255;3;0;9;No registration required
                0;255;3;0;9;Init complete, id=0, parent=0, distance=0, registration=1
                0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                0;255;3;0;9;TSP:MSG:BC
                0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                0;255;3;0;9;TSP:CHKUPL:OK
                0;255;3;0;9;TSP:MSG:GWL OK
                0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                0;255;3;0;9;TSP:MSG:BC
                0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                0;255;3;0;9;TSP:MSG:GWL OK
                0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                0;255;3;0;9;TSP:MSG:BC
                0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                0;255;3;0;9;TSP:CHKUPL:OK
                0;255;3;0;9;TSP:MSG:GWL OK
                0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                0;255;3;0;9;TSP:MSG:BC
                0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                0;255;3;0;9;TSP:MSG:GWL OK
                0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                0;255;3;0;9;TSP:SANCHK:OK
                

                debug node

                Starting sensor (RNNNA-, 2.0.0)
                TSM:INIT
                TSM:RADIO:OK
                TSP:ASSIGNID:OK (ID=100)
                TSM:FPAR
                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                TSM:FPAR
                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                TSM:FPAR
                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                TSM:FPAR
                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                !TSM:FPAR:FAIL
                !TSM:FAILURE
                TSM:PDT
                TSM:INIT
                TSM:RADIO:OK
                TSP:ASSIGNID:OK (ID=100)
                TSM:FPAR
                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                TSP:MSG:FPAR RES (ID=0, dist=0)
                TSP:MSG:PAR OK (ID=0, dist=1)
                TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                TSP:MSG:FPAR RES (ID=0, dist=0)
                TSM:FPAR:OK
                TSM:ID
                TSM:CHKID:OK (ID=100)
                TSM:UPL
                TSP:PING:SEND (dest=0)
                !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                TSP:CHKUPL:FAIL (hops=255)
                !TSM:UPL:FAIL
                TSM:FPAR
                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                TSM:FPAR
                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                TSM:FPAR
                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                TSM:FPAR
                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                !TSM:FPAR:FAIL
                !TSM:FAILURE
                TSM:PDT
                

                I'm really frustrated that it does not work correctly yet I applied literally your sugestions

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

                @Pictor-Lallemand ok, now next step: substitute all caps to 100uF (or if not available add a second 22uF in parallel). Please test and upload the same logs again. How do you power your nodes?

                1 Reply Last reply
                0
                • Pictor LallemandP Offline
                  Pictor LallemandP Offline
                  Pictor Lallemand
                  wrote on last edited by
                  #26

                  i add 2 capacitors of 22uf in serie the gateway is powered by my laptop
                  the node is powered by my laptop for use serial debug

                  debug node

                  Starting sensor (RNNNA-, 2.0.0)
                  TSM:INIT
                  TSM:RADIO:OK
                  TSP:ASSIGNID:OK (ID=100)
                  TSM:FPAR
                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                  TSM:FPAR
                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                  TSM:FPAR
                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                  TSM:FPAR
                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                  !TSM:FPAR:FAIL
                  !TSM:FAILURE
                  TSM:PDT
                  TSM:INIT
                  TSM:RADIO:OK
                  TSP:ASSIGNID:OK (ID=100)
                  TSM:FPAR
                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                  TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                  TSP:MSG:FPAR RES (ID=0, dist=0)
                  TSP:MSG:PAR OK (ID=0, dist=1)
                  TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                  TSP:MSG:FPAR RES (ID=0, dist=0)
                  TSM:FPAR:OK
                  TSM:ID
                  TSM:CHKID:OK (ID=100)
                  TSM:UPL
                  TSP:PING:SEND (dest=0)
                  !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                  TSP:CHKUPL:FAIL (hops=255)
                  !TSM:UPL:FAIL
                  TSM:FPAR
                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                  TSM:FPAR
                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                  TSM:FPAR
                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                  TSM:FPAR
                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                  !TSM:FPAR:FAIL
                  !TSM:FAILURE
                  TSM:PDT
                  TSM:INIT
                  TSM:RADIO:OK
                  TSP:ASSIGNID:OK (ID=100)
                  TSM:FPAR
                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                  TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                  TSP:MSG:FPAR RES (ID=0, dist=0)
                  TSP:MSG:PAR OK (ID=0, dist=1)
                  TSM:FPAR:OK
                  TSM:ID
                  TSM:CHKID:OK (ID=100)
                  TSM:UPL
                  TSP:PING:SEND (dest=0)
                  !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                  TSP:CHKUPL:FAIL (hops=255)
                  !TSM:UPL:FAIL
                  TSM:FPAR
                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                  

                  gw debug

                  0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
                  0;255;3;0;9;TSM:INIT
                  0;255;3;0;9;TSM:RADIO:OK
                  0;255;3;0;9;TSM:GW MODE
                  0;255;3;0;9;TSM:READY
                  0;255;3;0;14;Gateway startup complete.
                  0;255;0;0;18;2.0.0
                  0;255;3;0;9;No registration required
                  0;255;3;0;9;Init complete, id=0, parent=0, distance=0, registration=1
                  0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                  0;255;3;0;9;TSP:MSG:BC
                  0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                  0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                  0;255;3;0;9;TSP:MSG:GWL OK
                  0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                  0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                  0;255;3;0;9;TSP:MSG:BC
                  0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                  0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                  0;255;3;0;9;TSP:MSG:GWL OK
                  0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                  0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                  0;255;3;0;9;TSP:MSG:BC
                  0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                  0;255;3;0;9;TSP:CHKUPL:OK
                  0;255;3;0;9;TSP:MSG:GWL OK
                  0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                  0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                  0;255;3;0;9;TSP:MSG:BC
                  0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                  0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                  0;255;3;0;9;TSP:MSG:GWL OK
                  0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                  0;255;3;0;9;TSP:SANCHK:OK
                  

                  Thank you for your support

                  tekkaT 1 Reply Last reply
                  0
                  • Pictor LallemandP Pictor Lallemand

                    i add 2 capacitors of 22uf in serie the gateway is powered by my laptop
                    the node is powered by my laptop for use serial debug

                    debug node

                    Starting sensor (RNNNA-, 2.0.0)
                    TSM:INIT
                    TSM:RADIO:OK
                    TSP:ASSIGNID:OK (ID=100)
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    !TSM:FPAR:FAIL
                    !TSM:FAILURE
                    TSM:PDT
                    TSM:INIT
                    TSM:RADIO:OK
                    TSP:ASSIGNID:OK (ID=100)
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                    TSP:MSG:FPAR RES (ID=0, dist=0)
                    TSP:MSG:PAR OK (ID=0, dist=1)
                    TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                    TSP:MSG:FPAR RES (ID=0, dist=0)
                    TSM:FPAR:OK
                    TSM:ID
                    TSM:CHKID:OK (ID=100)
                    TSM:UPL
                    TSP:PING:SEND (dest=0)
                    !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                    TSP:CHKUPL:FAIL (hops=255)
                    !TSM:UPL:FAIL
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    !TSM:FPAR:FAIL
                    !TSM:FAILURE
                    TSM:PDT
                    TSM:INIT
                    TSM:RADIO:OK
                    TSP:ASSIGNID:OK (ID=100)
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                    TSP:MSG:FPAR RES (ID=0, dist=0)
                    TSP:MSG:PAR OK (ID=0, dist=1)
                    TSM:FPAR:OK
                    TSM:ID
                    TSM:CHKID:OK (ID=100)
                    TSM:UPL
                    TSP:PING:SEND (dest=0)
                    !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                    TSP:CHKUPL:FAIL (hops=255)
                    !TSM:UPL:FAIL
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    

                    gw debug

                    0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
                    0;255;3;0;9;TSM:INIT
                    0;255;3;0;9;TSM:RADIO:OK
                    0;255;3;0;9;TSM:GW MODE
                    0;255;3;0;9;TSM:READY
                    0;255;3;0;14;Gateway startup complete.
                    0;255;0;0;18;2.0.0
                    0;255;3;0;9;No registration required
                    0;255;3;0;9;Init complete, id=0, parent=0, distance=0, registration=1
                    0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                    0;255;3;0;9;TSP:MSG:BC
                    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                    0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                    0;255;3;0;9;TSP:MSG:GWL OK
                    0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                    0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                    0;255;3;0;9;TSP:MSG:BC
                    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                    0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                    0;255;3;0;9;TSP:MSG:GWL OK
                    0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                    0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                    0;255;3;0;9;TSP:MSG:BC
                    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                    0;255;3;0;9;TSP:CHKUPL:OK
                    0;255;3;0;9;TSP:MSG:GWL OK
                    0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                    0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                    0;255;3;0;9;TSP:MSG:BC
                    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                    0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                    0;255;3;0;9;TSP:MSG:GWL OK
                    0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                    0;255;3;0;9;TSP:SANCHK:OK
                    

                    Thank you for your support

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

                    @Pictor-Lallemand Did you add the 22uF caps in parallel or in series? In parallel you get 44uF, in series ~11uF...

                    Pictor LallemandP 1 Reply Last reply
                    0
                    • tekkaT tekka

                      @Pictor-Lallemand Did you add the 22uF caps in parallel or in series? In parallel you get 44uF, in series ~11uF...

                      Pictor LallemandP Offline
                      Pictor LallemandP Offline
                      Pictor Lallemand
                      wrote on last edited by
                      #28

                      @tekka in parallel

                      tekkaT 1 Reply Last reply
                      0
                      • Pictor LallemandP Pictor Lallemand

                        @tekka in parallel

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

                        @Pictor-Lallemand ok, then try putting them further away and/or decrease TX_POWER for both nodes by setting

                        #define MY_RF24_PA_LEVEL RF24_PA_LOW
                        
                        Pictor LallemandP 1 Reply Last reply
                        0
                        • tekkaT tekka

                          @Pictor-Lallemand ok, then try putting them further away and/or decrease TX_POWER for both nodes by setting

                          #define MY_RF24_PA_LEVEL RF24_PA_LOW
                          
                          Pictor LallemandP Offline
                          Pictor LallemandP Offline
                          Pictor Lallemand
                          wrote on last edited by
                          #30

                          @tekka I just try not conclusive

                          Starting sensor (RNNNA-, 2.0.0)
                          TSM:INIT
                          TSM:RADIO:OK
                          TSP:ASSIGNID:OK (ID=100)
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          !TSM:FPAR:FAIL
                          !TSM:FAILURE
                          TSM:PDT
                          TSM:INIT
                          TSM:RADIO:OK
                          TSP:ASSIGNID:OK (ID=100)
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                          TSP:MSG:FPAR RES (ID=0, dist=0)
                          TSP:MSG:PAR OK (ID=0, dist=1)
                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                          TSP:MSG:FPAR RES (ID=0, dist=0)
                          TSM:FPAR:OK
                          TSM:ID
                          TSM:CHKID:OK (ID=100)
                          TSM:UPL
                          TSP:PING:SEND (dest=0)
                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                          TSP:CHKUPL:FAIL (hops=255)
                          !TSM:UPL:FAIL
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSM:FPAR
                          

                          an idea ?

                          tekkaT 1 Reply Last reply
                          0
                          • Pictor LallemandP Pictor Lallemand

                            @tekka I just try not conclusive

                            Starting sensor (RNNNA-, 2.0.0)
                            TSM:INIT
                            TSM:RADIO:OK
                            TSP:ASSIGNID:OK (ID=100)
                            TSM:FPAR
                            TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                            TSM:FPAR
                            TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                            TSM:FPAR
                            TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                            TSM:FPAR
                            TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                            !TSM:FPAR:FAIL
                            !TSM:FAILURE
                            TSM:PDT
                            TSM:INIT
                            TSM:RADIO:OK
                            TSP:ASSIGNID:OK (ID=100)
                            TSM:FPAR
                            TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                            TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                            TSP:MSG:FPAR RES (ID=0, dist=0)
                            TSP:MSG:PAR OK (ID=0, dist=1)
                            TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                            TSP:MSG:FPAR RES (ID=0, dist=0)
                            TSM:FPAR:OK
                            TSM:ID
                            TSM:CHKID:OK (ID=100)
                            TSM:UPL
                            TSP:PING:SEND (dest=0)
                            !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                            TSP:CHKUPL:FAIL (hops=255)
                            !TSM:UPL:FAIL
                            TSM:FPAR
                            TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                            TSM:FPAR
                            TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                            TSM:FPAR
                            TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                            TSM:FPAR
                            

                            an idea ?

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

                            @Pictor-Lallemand Looks to me like power issue and/or radio interference. If you have 100uF or larger caps, try replacing them. Also, is there a WiFi AP nearby?

                            Pictor LallemandP 1 Reply Last reply
                            0
                            • tekkaT tekka

                              @Pictor-Lallemand Looks to me like power issue and/or radio interference. If you have 100uF or larger caps, try replacing them. Also, is there a WiFi AP nearby?

                              Pictor LallemandP Offline
                              Pictor LallemandP Offline
                              Pictor Lallemand
                              wrote on last edited by
                              #32

                              @tekka it is always the same worries I added capacitors 330uF no wifi point naarby

                              tekkaT 1 Reply Last reply
                              0
                              • Pictor LallemandP Pictor Lallemand

                                @tekka it is always the same worries I added capacitors 330uF no wifi point naarby

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

                                @Pictor-Lallemand What HW are you using & frequency?

                                Pictor LallemandP 1 Reply Last reply
                                0
                                • tekkaT tekka

                                  @Pictor-Lallemand What HW are you using & frequency?

                                  Pictor LallemandP Offline
                                  Pictor LallemandP Offline
                                  Pictor Lallemand
                                  wrote on last edited by
                                  #34

                                  @tekka What is the HW?

                                  1 Reply Last reply
                                  0
                                  • scalzS Offline
                                    scalzS Offline
                                    scalz
                                    Hardware Contributor
                                    wrote on last edited by scalz
                                    #35

                                    @Pictor-Lallemand
                                    HW= hardware ;) FW for firmware or SW software
                                    that's weird you're not lucky on this, I agree with tekka it looks like hardware issue..Perhaps you could try to replace your usb cable, not sure but who knows, or maybe some bad dupont cable too (try with some other). I have already seen bad usb or dupont cables so...or maybe try with another radio module.

                                    1 Reply Last reply
                                    0
                                    • Pictor LallemandP Offline
                                      Pictor LallemandP Offline
                                      Pictor Lallemand
                                      wrote on last edited by
                                      #36

                                      @tekka My HW is arduino pro mini 5v + ams1117 3,3V for radio module and NRF24L01 for radio

                                      1 Reply Last reply
                                      0
                                      • Pictor LallemandP Offline
                                        Pictor LallemandP Offline
                                        Pictor Lallemand
                                        wrote on last edited by
                                        #37

                                        @tekka

                                        I weld son tips on antenna here debug

                                        node

                                        Starting sensor (RNNNA-, 2.0.0)
                                        TSM:INIT
                                        TSM:RADIO:OK
                                        TSP:ASSIGNID:OK (ID=100)
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        !TSM:FPAR:FAIL
                                        !TSM:FAILURE
                                        TSM:PDT
                                        TSM:INIT
                                        TSM:RADIO:OK
                                        TSP:ASSIGNID:OK (ID=100)
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        TSP:MSG:FPAR RES (ID=0, dist=0)
                                        TSP:MSG:PAR OK (ID=0, dist=1)
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        TSP:MSG:FPAR RES (ID=0, dist=0)
                                        TSM:FPAR:OK
                                        TSM:ID
                                        TSM:CHKID:OK (ID=100)
                                        TSM:UPL
                                        TSP:PING:SEND (dest=0)
                                        !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                                        TSP:CHKUPL:FAIL (hops=255)
                                        !TSM:UPL:FAIL
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        !TSM:FPAR:FAIL
                                        !TSM:FAILURE
                                        TSM:PDT
                                        TSM:INIT
                                        TSM:RADIO:OK
                                        TSP:ASSIGNID:OK (ID=100)
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        TSP:MSG:FPAR RES (ID=0, dist=0)
                                        TSP:MSG:PAR OK (ID=0, dist=1)
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        TSP:MSG:FPAR RES (ID=0, dist=0)
                                        TSM:FPAR:OK
                                        TSM:ID
                                        TSM:CHKID:OK (ID=100)
                                        TSM:UPL
                                        TSP:PING:SEND (dest=0)
                                        !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                                        TSP:CHKUPL:FAIL (hops=255)
                                        !TSM:UPL:FAIL
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        !TSM:FPAR:FAIL
                                        !TSM:FAILURE
                                        TSM:PDT
                                        TSM:INIT
                                        TSM:RADIO:OK
                                        TSP:ASSIGNID:OK (ID=100)
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        TSP:MSG:FPAR RES (ID=0, dist=0)
                                        TSP:MSG:PAR OK (ID=0, dist=1)
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        TSP:MSG:FPAR RES (ID=0, dist=0)
                                        TSM:FPAR:OK
                                        TSM:ID
                                        TSM:CHKID:OK (ID=100)
                                        TSM:UPL
                                        TSP:PING:SEND (dest=0)
                                        !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                                        TSP:CHKUPL:FAIL (hops=255)
                                        !TSM:UPL:FAIL
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        !TSM:FPAR:FAIL
                                        !TSM:FAILURE
                                        TSM:PDT
                                        TSM:INIT
                                        TSM:RADIO:OK
                                        TSP:ASSIGNID:OK (ID=100)
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        TSP:MSG:FPAR RES (ID=0, dist=0)
                                        TSP:MSG:PAR OK (ID=0, dist=1)
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        TSP:MSG:FPAR RES (ID=0, dist=0)
                                        TSM:FPAR:OK
                                        TSM:ID
                                        TSM:CHKID:OK (ID=100)
                                        TSM:UPL
                                        TSP:PING:SEND (dest=0)
                                        !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                                        TSP:CHKUPL:FAIL (hops=255)
                                        !TSM:UPL:FAIL
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        !TSM:FPAR:FAIL
                                        !TSM:FAILURE
                                        TSM:PDT
                                        TSM:INIT
                                        TSM:RADIO:OK
                                        TSP:ASSIGNID:OK (ID=100)
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        TSP:MSG:FPAR RES (ID=0, dist=0)
                                        TSP:MSG:PAR OK (ID=0, dist=1)
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        TSP:MSG:FPAR RES (ID=0, dist=0)
                                        TSM:FPAR:OK
                                        TSM:ID
                                        TSM:CHKID:OK (ID=100)
                                        TSM:UPL
                                        TSP:PING:SEND (dest=0)
                                        !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                                        TSP:CHKUPL:FAIL (hops=255)
                                        !TSM:UPL:FAIL
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                        TSP:MSG:BC
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        !TSM:FPAR:FAIL
                                        !TSM:FAILURE
                                        TSM:PDT
                                        TSM:INIT
                                        TSM:RADIO:OK
                                        TSP:ASSIGNID:OK (ID=100)
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        TSP:MSG:FPAR RES (ID=0, dist=0)
                                        TSP:MSG:PAR OK (ID=0, dist=1)
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        TSP:MSG:FPAR RES (ID=0, dist=0)
                                        TSM:FPAR:OK
                                        TSM:ID
                                        TSM:CHKID:OK (ID=100)
                                        TSM:UPL
                                        TSP:PING:SEND (dest=0)
                                        !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                                        TSP:CHKUPL:FAIL (hops=255)
                                        !TSM:UPL:FAIL
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                        TSP:MSG:BC
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        TSP:MSG:FPAR RES (ID=0, dist=0)
                                        TSP:MSG:PAR OK (ID=0, dist=1)
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        TSP:MSG:FPAR RES (ID=0, dist=0)
                                        TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                        TSP:MSG:BC
                                        !TSP:FPAR:ACTIVE (msg not send)
                                        TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                        TSP:MSG:BC
                                        !TSP:FPAR:ACTIVE (msg not send)
                                        TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                        TSP:MSG:BC
                                        !TSP:FPAR:ACTIVE (msg not send)
                                        TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                        TSP:MSG:BC
                                        !TSP:FPAR:ACTIVE (msg not send)
                                        TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                        TSP:MSG:BC
                                        !TSP:FPAR:ACTIVE (msg not send)
                                        TSM:FPAR:OK
                                        TSM:ID
                                        TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                        TSP:MSG:BC
                                        TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=21,pt=1,l=1,sg=0,ft=0,st=ok:0
                                        TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                        TSP:MSG:BC
                                        TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=21,pt=1,l=1,sg=0,ft=0,st=ok:0
                                        TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                        TSP:MSG:BC
                                        TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=21,pt=1,l=1,sg=0,ft=0,st=ok:0
                                        TSM:CHKID:OK (ID=100)
                                        TSM:UPL
                                        TSP:PING:SEND (dest=0)
                                        TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=ok:1
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=25,pt=1,l=1,sg=0:1
                                        TSP:MSG:PONG RECV (hops=1)
                                        TSP:CHKUPL:OK
                                        TSM:UPL:OK
                                        TSM:READY
                                        TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=15,pt=6,l=2,sg=0,ft=0,st=ok:0100
                                        TSP:MSG:SEND 100-100-0-0 s=255,c=0,t=17,pt=0,l=5,sg=0,ft=0,st=ok:2.0.0
                                        TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=6,pt=1,l=1,sg=0,ft=0,st=ok:0
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=15,pt=6,l=2,sg=0:0100
                                        TSP:MSG:READ 0-0-100 s=255,c=3,t=6,pt=0,l=1,sg=0:M
                                        !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=11,pt=0,l=8,sg=0,ft=0,st=fail:TestNode
                                        !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=12,pt=0,l=3,sg=0,ft=1,st=fail:1.0
                                        !TSP:MSG:SEND 100-100-0-0 s=0,c=0,t=17,pt=0,l=7,sg=0,ft=2,st=fail:Counter
                                        Request registration...
                                        !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=26,pt=1,l=1,sg=0,ft=3,st=fail:2
                                        !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=26,pt=1,l=1,sg=0,ft=4,st=fail:2
                                        !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=26,pt=1,l=1,sg=0,ft=5,st=fail:2
                                        !TSM:UPL FAIL, SNP
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        !TSP:SEND:TNR
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        Init complete, id=100, parent=255, distance=255, registration=1
                                        !TSP:SEND:TNR
                                        !TSP:SEND:TNR
                                        !TSP:SEND:TNR
                                        !TSP:SEND:TNR
                                        TSM:FPAR
                                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                        !TSP:SEND:TNR
                                        !TSP:SEND:TNR
                                        

                                        gateway debug from MYSController

                                        8	13/08/2016 18:33:12	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			required
                                        10	13/08/2016 18:33:20	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        11	13/08/2016 18:33:22	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        12	13/08/2016 18:33:27	TX	100	100		BC	INTERNAL	C_INTERNAL	I_FIND_PARENT	STRING	0	NO		
                                        14	13/08/2016 18:33:27	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			(sender=100)
                                        17	13/08/2016 18:33:27	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_FIND_PARENT_RESPONSE	BYTE	1	NO	ok	0
                                        18	13/08/2016 18:33:27	TX	100	100		BC	INTERNAL	C_INTERNAL	I_FIND_PARENT	STRING	0	NO		
                                        20	13/08/2016 18:33:27	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			(sender=100)
                                        23	13/08/2016 18:33:28	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_FIND_PARENT_RESPONSE	BYTE	1	NO	ok	0
                                        24	13/08/2016 18:33:46	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        25	13/08/2016 18:34:01	TX	100	100		BC	INTERNAL	C_INTERNAL	I_FIND_PARENT	STRING	0	NO		
                                        27	13/08/2016 18:34:01	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			(sender=100)
                                        30	13/08/2016 18:34:01	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_FIND_PARENT_RESPONSE	BYTE	1	NO	ok	0
                                        31	13/08/2016 18:34:01	TX	100	100		BC	INTERNAL	C_INTERNAL	I_FIND_PARENT	STRING	0	NO		
                                        33	13/08/2016 18:34:01	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			(sender=100)
                                        36	13/08/2016 18:34:02	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_FIND_PARENT_RESPONSE	BYTE	1	NO	ok	0
                                        37	13/08/2016 18:34:08	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        38	13/08/2016 18:34:08	TX	100	100		BC	INTERNAL	C_INTERNAL	I_FIND_PARENT	STRING	0	NO		
                                        40	13/08/2016 18:34:08	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			(sender=100)
                                        43	13/08/2016 18:34:09	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_FIND_PARENT_RESPONSE	BYTE	1	NO	ok	0
                                        44	13/08/2016 18:34:09	TX	100	100		BC	INTERNAL	C_INTERNAL	I_FIND_PARENT	STRING	0	NO		
                                        46	13/08/2016 18:34:09	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			(sender=100)
                                        49	13/08/2016 18:34:09	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_FIND_PARENT_RESPONSE	BYTE	1	NO	ok	0
                                        50	13/08/2016 18:34:09	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        51	13/08/2016 18:34:10	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        52	13/08/2016 18:34:10	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        53	13/08/2016 18:34:11	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        54	13/08/2016 18:34:11	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        55	13/08/2016 18:34:11	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        56	13/08/2016 18:34:11	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        57	13/08/2016 18:34:11	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        58	13/08/2016 18:34:12	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        59	13/08/2016 18:34:12	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        60	13/08/2016 18:34:12	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        62	13/08/2016 18:34:12	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        63	13/08/2016 18:34:13	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        64	13/08/2016 18:34:13	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        65	13/08/2016 18:34:14	TX	100	100		0	INTERNAL	C_INTERNAL	I_DISCOVER_RESPONSE	BYTE	1	NO		0
                                        67	13/08/2016 18:34:15	TX	100	100		0	INTERNAL	C_INTERNAL	I_DISCOVER_RESPONSE	BYTE	1	NO		0
                                        69	13/08/2016 18:34:15	TX	100	100		0	INTERNAL	C_INTERNAL	I_DISCOVER_RESPONSE	BYTE	1	NO		0
                                        71	13/08/2016 18:34:16	TX	100	100		0	INTERNAL	C_INTERNAL	NA (24)	BYTE	1	NO		1
                                        72	13/08/2016 18:34:16	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			hops=1)
                                        73	13/08/2016 18:34:16	TX	0	0	100	100	INTERNAL	C_INTERNAL	NA (25)	BYTE	1	NO	ok	1
                                        74	13/08/2016 18:34:16	TX	100	100		0	INTERNAL	C_INTERNAL	I_SIGNING_PRESENTATION	CUSTOM	2	NO		0100
                                        75	13/08/2016 18:34:16	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_SIGNING_PRESENTATION	CUSTOM	2	NO	ok	0100
                                        76	13/08/2016 18:34:16	TX	100	100		0	INTERNAL	C_PRESENTATION	S_ARDUINO_NODE	STRING	5	NO		2.0.0
                                        78	13/08/2016 18:34:16	TX	100	100		0	INTERNAL	C_INTERNAL	I_CONFIG	BYTE	1	NO		0
                                        81	13/08/2016 18:34:16	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_CONFIG	STRING	1	NO	ok	M
                                        84	13/08/2016 18:36:27	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                        
                                        tekkaT 1 Reply Last reply
                                        0
                                        • Pictor LallemandP Pictor Lallemand

                                          @tekka

                                          I weld son tips on antenna here debug

                                          node

                                          Starting sensor (RNNNA-, 2.0.0)
                                          TSM:INIT
                                          TSM:RADIO:OK
                                          TSP:ASSIGNID:OK (ID=100)
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          !TSM:FPAR:FAIL
                                          !TSM:FAILURE
                                          TSM:PDT
                                          TSM:INIT
                                          TSM:RADIO:OK
                                          TSP:ASSIGNID:OK (ID=100)
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          TSP:MSG:FPAR RES (ID=0, dist=0)
                                          TSP:MSG:PAR OK (ID=0, dist=1)
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          TSP:MSG:FPAR RES (ID=0, dist=0)
                                          TSM:FPAR:OK
                                          TSM:ID
                                          TSM:CHKID:OK (ID=100)
                                          TSM:UPL
                                          TSP:PING:SEND (dest=0)
                                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                                          TSP:CHKUPL:FAIL (hops=255)
                                          !TSM:UPL:FAIL
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          !TSM:FPAR:FAIL
                                          !TSM:FAILURE
                                          TSM:PDT
                                          TSM:INIT
                                          TSM:RADIO:OK
                                          TSP:ASSIGNID:OK (ID=100)
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          TSP:MSG:FPAR RES (ID=0, dist=0)
                                          TSP:MSG:PAR OK (ID=0, dist=1)
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          TSP:MSG:FPAR RES (ID=0, dist=0)
                                          TSM:FPAR:OK
                                          TSM:ID
                                          TSM:CHKID:OK (ID=100)
                                          TSM:UPL
                                          TSP:PING:SEND (dest=0)
                                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                                          TSP:CHKUPL:FAIL (hops=255)
                                          !TSM:UPL:FAIL
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          !TSM:FPAR:FAIL
                                          !TSM:FAILURE
                                          TSM:PDT
                                          TSM:INIT
                                          TSM:RADIO:OK
                                          TSP:ASSIGNID:OK (ID=100)
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          TSP:MSG:FPAR RES (ID=0, dist=0)
                                          TSP:MSG:PAR OK (ID=0, dist=1)
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          TSP:MSG:FPAR RES (ID=0, dist=0)
                                          TSM:FPAR:OK
                                          TSM:ID
                                          TSM:CHKID:OK (ID=100)
                                          TSM:UPL
                                          TSP:PING:SEND (dest=0)
                                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                                          TSP:CHKUPL:FAIL (hops=255)
                                          !TSM:UPL:FAIL
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          !TSM:FPAR:FAIL
                                          !TSM:FAILURE
                                          TSM:PDT
                                          TSM:INIT
                                          TSM:RADIO:OK
                                          TSP:ASSIGNID:OK (ID=100)
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          TSP:MSG:FPAR RES (ID=0, dist=0)
                                          TSP:MSG:PAR OK (ID=0, dist=1)
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          TSP:MSG:FPAR RES (ID=0, dist=0)
                                          TSM:FPAR:OK
                                          TSM:ID
                                          TSM:CHKID:OK (ID=100)
                                          TSM:UPL
                                          TSP:PING:SEND (dest=0)
                                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                                          TSP:CHKUPL:FAIL (hops=255)
                                          !TSM:UPL:FAIL
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          !TSM:FPAR:FAIL
                                          !TSM:FAILURE
                                          TSM:PDT
                                          TSM:INIT
                                          TSM:RADIO:OK
                                          TSP:ASSIGNID:OK (ID=100)
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          TSP:MSG:FPAR RES (ID=0, dist=0)
                                          TSP:MSG:PAR OK (ID=0, dist=1)
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          TSP:MSG:FPAR RES (ID=0, dist=0)
                                          TSM:FPAR:OK
                                          TSM:ID
                                          TSM:CHKID:OK (ID=100)
                                          TSM:UPL
                                          TSP:PING:SEND (dest=0)
                                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                                          TSP:CHKUPL:FAIL (hops=255)
                                          !TSM:UPL:FAIL
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                          TSP:MSG:BC
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          !TSM:FPAR:FAIL
                                          !TSM:FAILURE
                                          TSM:PDT
                                          TSM:INIT
                                          TSM:RADIO:OK
                                          TSP:ASSIGNID:OK (ID=100)
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          TSP:MSG:FPAR RES (ID=0, dist=0)
                                          TSP:MSG:PAR OK (ID=0, dist=1)
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          TSP:MSG:FPAR RES (ID=0, dist=0)
                                          TSM:FPAR:OK
                                          TSM:ID
                                          TSM:CHKID:OK (ID=100)
                                          TSM:UPL
                                          TSP:PING:SEND (dest=0)
                                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                                          TSP:CHKUPL:FAIL (hops=255)
                                          !TSM:UPL:FAIL
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                          TSP:MSG:BC
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          TSP:MSG:FPAR RES (ID=0, dist=0)
                                          TSP:MSG:PAR OK (ID=0, dist=1)
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          TSP:MSG:FPAR RES (ID=0, dist=0)
                                          TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                          TSP:MSG:BC
                                          !TSP:FPAR:ACTIVE (msg not send)
                                          TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                          TSP:MSG:BC
                                          !TSP:FPAR:ACTIVE (msg not send)
                                          TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                          TSP:MSG:BC
                                          !TSP:FPAR:ACTIVE (msg not send)
                                          TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                          TSP:MSG:BC
                                          !TSP:FPAR:ACTIVE (msg not send)
                                          TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                          TSP:MSG:BC
                                          !TSP:FPAR:ACTIVE (msg not send)
                                          TSM:FPAR:OK
                                          TSM:ID
                                          TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                          TSP:MSG:BC
                                          TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=21,pt=1,l=1,sg=0,ft=0,st=ok:0
                                          TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                          TSP:MSG:BC
                                          TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=21,pt=1,l=1,sg=0,ft=0,st=ok:0
                                          TSP:MSG:READ 0-0-255 s=255,c=3,t=20,pt=0,l=1,sg=0:0
                                          TSP:MSG:BC
                                          TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=21,pt=1,l=1,sg=0,ft=0,st=ok:0
                                          TSM:CHKID:OK (ID=100)
                                          TSM:UPL
                                          TSP:PING:SEND (dest=0)
                                          TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=ok:1
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=25,pt=1,l=1,sg=0:1
                                          TSP:MSG:PONG RECV (hops=1)
                                          TSP:CHKUPL:OK
                                          TSM:UPL:OK
                                          TSM:READY
                                          TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=15,pt=6,l=2,sg=0,ft=0,st=ok:0100
                                          TSP:MSG:SEND 100-100-0-0 s=255,c=0,t=17,pt=0,l=5,sg=0,ft=0,st=ok:2.0.0
                                          TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=6,pt=1,l=1,sg=0,ft=0,st=ok:0
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=15,pt=6,l=2,sg=0:0100
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=6,pt=0,l=1,sg=0:M
                                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=11,pt=0,l=8,sg=0,ft=0,st=fail:TestNode
                                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=12,pt=0,l=3,sg=0,ft=1,st=fail:1.0
                                          !TSP:MSG:SEND 100-100-0-0 s=0,c=0,t=17,pt=0,l=7,sg=0,ft=2,st=fail:Counter
                                          Request registration...
                                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=26,pt=1,l=1,sg=0,ft=3,st=fail:2
                                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=26,pt=1,l=1,sg=0,ft=4,st=fail:2
                                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=26,pt=1,l=1,sg=0,ft=5,st=fail:2
                                          !TSM:UPL FAIL, SNP
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          !TSP:SEND:TNR
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          Init complete, id=100, parent=255, distance=255, registration=1
                                          !TSP:SEND:TNR
                                          !TSP:SEND:TNR
                                          !TSP:SEND:TNR
                                          !TSP:SEND:TNR
                                          TSM:FPAR
                                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                          !TSP:SEND:TNR
                                          !TSP:SEND:TNR
                                          

                                          gateway debug from MYSController

                                          8	13/08/2016 18:33:12	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			required
                                          10	13/08/2016 18:33:20	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          11	13/08/2016 18:33:22	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          12	13/08/2016 18:33:27	TX	100	100		BC	INTERNAL	C_INTERNAL	I_FIND_PARENT	STRING	0	NO		
                                          14	13/08/2016 18:33:27	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			(sender=100)
                                          17	13/08/2016 18:33:27	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_FIND_PARENT_RESPONSE	BYTE	1	NO	ok	0
                                          18	13/08/2016 18:33:27	TX	100	100		BC	INTERNAL	C_INTERNAL	I_FIND_PARENT	STRING	0	NO		
                                          20	13/08/2016 18:33:27	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			(sender=100)
                                          23	13/08/2016 18:33:28	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_FIND_PARENT_RESPONSE	BYTE	1	NO	ok	0
                                          24	13/08/2016 18:33:46	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          25	13/08/2016 18:34:01	TX	100	100		BC	INTERNAL	C_INTERNAL	I_FIND_PARENT	STRING	0	NO		
                                          27	13/08/2016 18:34:01	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			(sender=100)
                                          30	13/08/2016 18:34:01	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_FIND_PARENT_RESPONSE	BYTE	1	NO	ok	0
                                          31	13/08/2016 18:34:01	TX	100	100		BC	INTERNAL	C_INTERNAL	I_FIND_PARENT	STRING	0	NO		
                                          33	13/08/2016 18:34:01	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			(sender=100)
                                          36	13/08/2016 18:34:02	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_FIND_PARENT_RESPONSE	BYTE	1	NO	ok	0
                                          37	13/08/2016 18:34:08	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          38	13/08/2016 18:34:08	TX	100	100		BC	INTERNAL	C_INTERNAL	I_FIND_PARENT	STRING	0	NO		
                                          40	13/08/2016 18:34:08	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			(sender=100)
                                          43	13/08/2016 18:34:09	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_FIND_PARENT_RESPONSE	BYTE	1	NO	ok	0
                                          44	13/08/2016 18:34:09	TX	100	100		BC	INTERNAL	C_INTERNAL	I_FIND_PARENT	STRING	0	NO		
                                          46	13/08/2016 18:34:09	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			(sender=100)
                                          49	13/08/2016 18:34:09	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_FIND_PARENT_RESPONSE	BYTE	1	NO	ok	0
                                          50	13/08/2016 18:34:09	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          51	13/08/2016 18:34:10	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          52	13/08/2016 18:34:10	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          53	13/08/2016 18:34:11	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          54	13/08/2016 18:34:11	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          55	13/08/2016 18:34:11	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          56	13/08/2016 18:34:11	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          57	13/08/2016 18:34:11	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          58	13/08/2016 18:34:12	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          59	13/08/2016 18:34:12	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          60	13/08/2016 18:34:12	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          62	13/08/2016 18:34:12	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          63	13/08/2016 18:34:13	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          64	13/08/2016 18:34:13	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          65	13/08/2016 18:34:14	TX	100	100		0	INTERNAL	C_INTERNAL	I_DISCOVER_RESPONSE	BYTE	1	NO		0
                                          67	13/08/2016 18:34:15	TX	100	100		0	INTERNAL	C_INTERNAL	I_DISCOVER_RESPONSE	BYTE	1	NO		0
                                          69	13/08/2016 18:34:15	TX	100	100		0	INTERNAL	C_INTERNAL	I_DISCOVER_RESPONSE	BYTE	1	NO		0
                                          71	13/08/2016 18:34:16	TX	100	100		0	INTERNAL	C_INTERNAL	NA (24)	BYTE	1	NO		1
                                          72	13/08/2016 18:34:16	TX	-1	-1		-1	-1	NA (-1)	N/A	NA (-1)	-1			hops=1)
                                          73	13/08/2016 18:34:16	TX	0	0	100	100	INTERNAL	C_INTERNAL	NA (25)	BYTE	1	NO	ok	1
                                          74	13/08/2016 18:34:16	TX	100	100		0	INTERNAL	C_INTERNAL	I_SIGNING_PRESENTATION	CUSTOM	2	NO		0100
                                          75	13/08/2016 18:34:16	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_SIGNING_PRESENTATION	CUSTOM	2	NO	ok	0100
                                          76	13/08/2016 18:34:16	TX	100	100		0	INTERNAL	C_PRESENTATION	S_ARDUINO_NODE	STRING	5	NO		2.0.0
                                          78	13/08/2016 18:34:16	TX	100	100		0	INTERNAL	C_INTERNAL	I_CONFIG	BYTE	1	NO		0
                                          81	13/08/2016 18:34:16	TX	0	0	100	100	INTERNAL	C_INTERNAL	I_CONFIG	STRING	1	NO	ok	M
                                          84	13/08/2016 18:36:27	TX	0	0	255	BC	INTERNAL	C_INTERNAL	I_DISCOVER	STRING	1	NO	bc	0
                                          
                                          tekkaT Offline
                                          tekkaT Offline
                                          tekka
                                          Admin
                                          wrote on last edited by
                                          #38

                                          @Pictor-Lallemand Looks to me like a power issue, not an antenna issue.

                                          Half of the messages are OK, and then all of a sudden they all fail:

                                          TSM:CHKID:OK (ID=100)
                                          TSM:UPL
                                          TSP:PING:SEND (dest=0)
                                          TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=ok:1
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=25,pt=1,l=1,sg=0:1
                                          TSP:MSG:PONG RECV (hops=1)
                                          TSP:CHKUPL:OK
                                          TSM:UPL:OK
                                          TSM:READY
                                          TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=15,pt=6,l=2,sg=0,ft=0,st=ok:0100
                                          TSP:MSG:SEND 100-100-0-0 s=255,c=0,t=17,pt=0,l=5,sg=0,ft=0,st=ok:2.0.0
                                          TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=6,pt=1,l=1,sg=0,ft=0,st=ok:0
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=15,pt=6,l=2,sg=0:0100
                                          TSP:MSG:READ 0-0-100 s=255,c=3,t=6,pt=0,l=1,sg=0:M
                                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=11,pt=0,l=8,sg=0,ft=0,st=fail:TestNode
                                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=12,pt=0,l=3,sg=0,ft=1,st=fail:1.0
                                          !TSP:MSG:SEND 100-100-0-0 s=0,c=0,t=17,pt=0,l=7,sg=0,ft=2,st=fail:Counter
                                          

                                          At what frequency are you running your minis? Out of curiosity, can you post a pic of your node+radio (ideally with a pic of the cap) and GW+radio - this may give additional info.

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


                                          19

                                          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