mqtt_esp8266_gateway and 1mhz node



  • Hello,

    I got realy huge problems getting my 1mhz
    https://forum.mysensors.org/topic/3018/tutorial-how-to-burn-1mhz-8mhz-bootloader-using-arduino-ide-1-6-5-r5/64

    To narrow don the issue I used a minimal sketch for testing:

    #define MY_NODE_ID 11
    #define MY_BAUD_RATE 115200
    
    // Enable debug prints to serial monitor
    #define MY_DEBUG
    
    // Enable and select radio type attached
    #define MY_RADIO_NRF24
    //#define MY_RADIO_RFM69
    #include <SPI.h>
    #include <MySensors.h>
    
    
    void before()
    {
      Serial.begin(MY_BAUD_RATE);
      OSCCAL=150;
    }
    
    void presentation()
    { 
    
    }
    
    void setup()
    {
    
    }
    
    void loop()
    {
      wait(100);
    }
    
    

    To sum this up .. if I enabled debugging on the gateway everything is working .. if I disable debugging on the gateway .. nada .. my 1mhz node is not connecting.


  • Mod

    @cimba007 could you explain what you mean by "everything is working"? From what I see in the sketch, no presentation is made and no data is ever sent. So nothing should be working 😉



  • This post is deleted!


  • @mfalkvidd

    Looking at the serial console I can just see this code:

    TSP:PING:SEND (dest=0)<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=ok:1<\n>
    TSP:CHKUPL:FAIL (hops=255)<\n>
    !TSM:UPL:FAIL<\n>
    

    If there is no working uplink there is no need for presentation and sketchinfo 😉
    Just saying that I don't even come to the point where I could send some actual data.

    If I enable debug output on the gateway I get further:

    TSM:UPL<\n>
    TSP:PING:SEND (dest=0)<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=ok:1<\n>
    TSP:MSG:READ 0-0-11 s=255,c=3,t=25,pt=1,l=1,sg=0:1<\n>
    TSP:MSG:PONG RECV (hops=1)<\n>
    TSP:CHKUPL:OK<\n>
    TSM:UPL:OK<\n>
    TSM:READY<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=15,pt=6,l=2,sg=0,ft=0,st=ok:0100<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=0,t=17,pt=0,l=5,sg=0,ft=0,st=ok:2.0.0<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=6,pt=1,l=1,sg=0,ft=0,st=ok:0<\n>
    TSP:MSG:READ 0-0-11 s=255,c=3,t=15,pt=6,l=2,sg=0:0100<\n>
    TSP:MSG:READ 0-0-11 s=255,c=3,t=6,pt=0,l=6,sg=0:Metric<\n>
    TSP:MSG:ACK msg<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=6,pt=0,l=6,sg=0,ft=0,st=ok:Metric<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=11,pt=0,l=4,sg=0,ft=0,st=ok:Test<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=12,pt=0,l=4,sg=0,ft=0,st=ok:Test<\n>
    Request registration...<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=26,pt=1,l=1,sg=0,ft=0,st=ok:2<\n>
    TSP:MSG:READ 0-0-11 s=255,c=3,t=27,pt=1,l=1,sg=0:1<\n>
    Node registration=1<\n>
    TSP:MSG:READ 0-0-11 s=255,c=3,t=6,pt=0,l=6,sg=0:Metric<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=26,pt=1,l=1,sg=0,ft=0,st=ok:2<\n>
    TSP:MSG:READ 0-0-11 s=255,c=3,t=27,pt=1,l=1,sg=0:1<\n>
    Node registration=1<\n>
    Init complete, id=11, parent=0, distance=1, registration=1<\n>
    

    But enabling debug output on the gateway slows things down .. my only suggestion is that my 1mhz node is too "slow" for my 80mh gateway .. this is just a wild guess.

    My other 8mhz nodes are working fine (complete stuff with presentation, publishing data etc. to mycontroller)



  • I used this little hack to change the prescaler at runtime to get 8mhz back

    http://playground.arduino.cc/Code/Prescaler

    #define MY_NODE_ID 11
    #define MY_BAUD_RATE 9600
    
    // Enable debug prints to serial monitor
    #define MY_DEBUG
    
    // Enable and select radio type attached
    #define MY_RADIO_NRF24
    //#define MY_RADIO_RFM69
    #include <SPI.h>
    #include <MySensors.h>
    
    
    void before()
    {
      Serial.begin(MY_BAUD_RATE);
      //OSCCAL=150;
      Serial.println(getClockPrescaler());
      setClockPrescaler(0);
    }
    
    void presentation()
    { 
      sendSketchInfo("Test", "Test");
    }
    
    void setup()
    {
    
    }
    
    void loop()
    {
      wait(100);
    }
    

    voilla .. the delays are way off but ..

    TSM:FPAR<\n>
    TSP:MSG:SEND 11-11-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:<\n>
    TSM:FPAR<\n>
    TSP:MSG:SEND 11-11-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:<\n>
    TSP:MSG:READ 0-0-11 s=255,c=3,t=8,pt=1,l=1,sg=0:0<\n>
    TSP:MSG:FPAR RES (ID=0, dist=0)<\n>
    TSP:MSG:PAR OK (ID=0, dist=1)<\n>
    TSM:FPAR:OK<\n>
    TSM:ID<\n>
    TSM:CHKID:OK (ID=11)<\n>
    TSM:UPL<\n>
    TSP:PING:SEND (dest=0)<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=ok:1<\n>
    TSP:MSG:READ 0-0-11 s=255,c=3,t=8,pt=1,l=1,sg=0:0<\n>
    TSP:MSG:FPAR RES (ID=0, dist=0)<\n>
    TSP:MSG:READ 0-0-11 s=255,c=3,t=25,pt=1,l=1,sg=0:1<\n>
    TSP:MSG:PONG RECV (hops=1)<\n>
    TSP:MSG:READ 0-0-11 s=255,c=3,t=25,pt=1,l=1,sg=0:1<\n>
    TSP:MSG:READ 0-0-11 s=255,c=3,t=25,pt=1,l=1,sg=0:1<\n>
    TSP:CHKUPL:OK<\n>
    TSM:UPL:OK<\n>
    TSM:READY<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=15,pt=6,l=2,sg=0,ft=0,st=ok:0100<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=0,t=17,pt=0,l=5,sg=0,ft=0,st=ok:2.0.0<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=6,pt=1,l=1,sg=0,ft=0,st=ok:0<\n>
    TSP:MSG:READ 0-0-11 s=255,c=3,t=15,pt=6,l=2,sg=0:0100<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=11,pt=0,l=4,sg=0,ft=0,st=ok:Test<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=12,pt=0,l=4,sg=0,ft=0,st=ok:Test<\n>
    Request registration...<\n>
    TSP:MSG:SEND 11-11-0-0 s=255,c=3,t=26,pt=1,l=1,sg=0,ft=0,st=ok:2<\n>
    TSP:MSG:READ 0-0-11 s=255,c=3,t=27,pt=1,l=1,sg=0:1<\n>
    Node registration=1<\n>
    Init complete, id=11, parent=0, distance=1, registration=1<\n>
    

    So my educated guss is .. that 1mhz is too slow .. what a pity ;-(


  • Mod

    @cimba007 great troubleshooting! I wonder why no-one else has noticed this problem.
    I don't have any 1MHz nodes (haven't had any use case that would benefit) so I can't check unfortunately.



  • @mfalkvidd

    I only recently got into the jboard and thought abou trying out 1mhz as described here:

    https://forum.mysensors.org/topic/3018/tutorial-how-to-burn-1mhz-8mhz-bootloader-using-arduino-ide-1-6-5-r5/64

    I plan to use the jboard with 2x AA so 3,0Volt and the only valid option is 1mhz.

    I can only guess that an esp8266 as an gateway in combination with 1mhz nodes is "special".

    Now I will check the esp8266 gateway code to look if there are some assumptions on delays etc.

    EDIT: For now I can see that the gatway is receiving the PING message .. and that the node is waiting.

    		transportRouteMessage(build(_msgTmp, _nc.nodeId, targetId, NODE_SENSOR_ID, C_INTERNAL, I_PING, false).set((uint8_t)0x01));
    		// Wait for ping reply or timeout
    		//Serial.print("WAITING");
    		transportWait(2000, C_INTERNAL, I_PONG);
    

    EDIT2: And that the gateway want's to send out the I_PONG

    my debug code got this

    WE GOT SOME PING?!11<\r><\n>
    We got an message for11 type: I_PONG<\r><\n>
    We got an message for11 type: OTHER<\r><\n>
    
    

    So .. let me try to state the timing:

    Node sends I_PING message to Gateway .. at 21:42:52,314
    Gateway receives I_PING at 21:42:52,281

    waiiiiittt .. the node is still debugging on the serial as the gateway already got the message like 25ms ago? This might be an artifact of my hterm serial console but lets assume it is right.

    gateway send I_PONG at 21:42:52,284

    So the gateway takes 3ms to process the message including serial overhead .. nice timing

    the node reports TSP:CHKUPL:FAIL (hops=255)<\n> at 21:42:54,404

    assuming transportWait(2000, C_INTERNAL, I_PONG); takes 2000ms then the node began listeing at

    21:42:52,404

    whereas the gateway responded at:

    21:42:52,281 .. so there seems a whopping 120ms delay caused by some serial output or just the slow 1mhz of the node ..

    The gateway already responded while the node didn't even move to the "LISTEN" code ..

    This is just a "rough guess" as the timings are only measured using my terminal program but I think this might narrow down my issue


  • Mod

    @cimba007 the atmega328 can go as low as 2.34V on 8MHz according to specifications, and people have reported that it usually can go even lower. So 1MHz is not necessary if you're ok with wasting the bottom 5-10% (which is approximately how much is left of 2xAA when they reach 2.34V, depending on battery brand)



  • @mfalkvidd

    Look at my latest edit of the previous message.

    Yep .. for my other 5 nodes (I only assembled 1) I think i will stick with 8mhz .. but it was a nice experiment 😉 Thanks for the information with 2,34V. I think this might be enough for now.

    PS: I am using http://www.der-hammer.info/terminal/ which is nice as it gives you timestamps on mouse over.
    PPS: In addition to the 80mhz of the esp8266 the SPI clock might be much higher too. nrf24 can work with up to 10mhz and my 1mhz node can drive the SPI with at most 500khz (with SPI_DIV_2)

    I just confirmed that the ESP8266 is running with 2MHZ spi speed .. so even receiving and sending is potential 4times faster .. not taking into account the 250kbps air data rate .. but it should still give a little lead at reading and writing registers.


  • Mod

    @cimba007 very interesting.

    Somewhat of a side note:
    People have reported that they have had trouble to use 57600 bps on the 3.3V 8MHz atmegas, because the timing isn't accurate enough for that high speed. Based on that, using 115200 on 1MHz should be impossible. Bit I guess it is working since your terminal works.

    You could try to lower the speed to 9600 or even lower and see if that makes a difference.



  • @mfalkvidd

    It is indded working with 115200 .. at least my terminal is set at this rate and the node too. It even pumped it up to not waste too much time in the serial routines.

    I used this sketch:

    void setup() {
      Serial.begin(57600);
      pinMode(A4,OUTPUT);
      Serial.println(OSCCAL);
    }
    
    // Use hterm to repeatatly send the same message unti you cacn read it
    void loop() {
      static uint8_t val = 140;
      OSCCAL=val;
      //Serial.println();
      Serial.print("Osccal= ");  
      Serial.println(OSCCAL,DEC);
    
      delay(500);
      //digitalWrite(A4,HIGH);
      //delay(1);
      //digitalWrite(A4,LOW);
      //delay(100);
      while(Serial.available())
        Serial.write(Serial.read());
      val++;
      if(val > 200)
        val = 140;
    }
    

    It just tries out various settings for OSCCAL .. thus ramping the atmega328 up and speed. There are some settings where I can receive clear messages like in the range from 140 to 160 .. so ist just set OSCCAL to 150.

    This might be specific for my current serial-usb converter but for now its fine.



  • @mfalkvidd

    I might have been wrong regarding the timing.

    My latest test indicates gateway sends pong at:

    573.8

    Node starts listeing at

    572.8

    Still there is not too much time ...

    To be extra sure I popped an delay on the gateway side:

    	Serial.println(message.type == I_PONG ? "I_PONG" : "OTHER");
    	delay(2);
    	//Serial.println("")
    	bool ok = transportSendWrite(route, message);
    

    Now my node is working again .. I would say the whole issue is an race condition resulting from the great difference in speed.

    I found a workaround that is acceptable (for me at least):

    In MyTransport.cpp I added an delay(2).
    I_PING messages should not be too common to have an impact on battery life and the node now has enough time to switch to receiving mode.

    				// general
    				if (type == I_PING) {
    					delay(2);
    					//Serial.print("WE GOT SOME PING?!");
    					//Serial.println(sender);
    					debug(PSTR("TSP:MSG:PINGED (ID=%d, hops=%d)\n"), sender, _msg.getByte());
    					transportRouteMessage(build(_msgTmp, _nc.nodeId, sender, NODE_SENSOR_ID, C_INTERNAL, I_PONG, false).set((uint8_t)0x01));
    					return; // no further processing required
    				}
    

    https://github.com/mysensors/MySensors/issues/578


  • Admin

    @cimba007 That's an interesting finding, I'll look into that.



  • @tekka
    I just realized that this might affect all request-response operations and a solution might be difficult to find without affecting all users that don't use this particular setup.

    It would be ideal if an potential fix could be made so it would only affect the esp8266_mqtt code .. but again .. this might have further implications.


  • Admin

    @cimba007 Yes - and now thinking of the upcoming RPI GW port running at 1.2GHz ... 🙂 I think a delay of ~300ms should be safe.




  • Hardware Contributor

    Lol I don't think/hope that the 1.2ghz will break the 8mhz node 🙂

    @cimba007 I already noticed this behaviour as I use 1Mhz nodes. but didn't digged too much because for me this was a racing issue and was making sense, especially when serial debug was enabled. But even if not, 1mhz detunes timers etc so 1ms is not anymore.
    Finally, for my network stability, I have decided to use 8Mhz when radio is active. Because imho it was making more sense, that for all nodes 1ms=1ms. So, if i don't need radio, i use 1mhz, else 8mhz. So I always have a decent speed process for the communication. And when radio is active, the 1mhz power savings of atmel is too small regarding radio power consumption..

    I think there is no problem to go as low as 1.8v with 328p
    0_1472891902251_328p_clock.png

    Also interesting about 250 000kbps baudrate, 0% error...
    0_1472892062467_ulpnode-uart-speed.jpg
    (I have only tried this for 4mhz, i'm not sure if it could work for 1mhz, from the datasheet it shouldn't. And that wasn't with Arduino Serial Monitor (250k).



  • With 1Mhz I could get working was 115200.

    I would like to switch to 8mhz but I have a dilemma.

    I got ten 2xAA battery holders which would give me (with batteries) a working range from ~2.00V - 3.00V (approx).

    The only option left is trying out the whole stuff with 16mhz / 8 = 2mhz but .. well .. I can't reflash the fuses on the jnode after assembly.

    The other option I have is to switch to LDO + LiPo battery but I was not too sure to put lipo batteries all over my place for safety concerns. Don't know what will happen if on a hot summer day the lipo might get a full day of sun radiation when placed near a window for example.



  • Update: I missed one important point .. OSCCAL doesn't range from 140 to 200 but actually from 0 to 255

    0_1472922468980_upload-676b3c85-462c-468f-9799-199fb1b6044d

    I changed the ranges and ...

    void setup() {
      Serial.begin(250000);
      Serial.println(OSCCAL);
    }
    
    // Use hterm to repeatatly send the same message unti you cacn read it
    void loop() {
      static uint8_t val = 0;
      OSCCAL=val;
      //Serial.println();
      Serial.print("Osccal= ");  
      Serial.println(OSCCAL,DEC);
    
      delay(100);
      //while(Serial.available())
      //  Serial.write(Serial.read());
      val++;
      if(val > 250)
      {
        while(true);
      }
    }
    

    Believe it or not

    0_1472922508285_upload-9e7bca92-f9e7-40c4-920a-fcbecfcacd21

    Starting from osccal 239 .. which is technically 12/8 = 1,5mhz and not 1mhz .. I was able to receive some data .. with the drawback that all delay functions etc. might be "a little bit" off.

    Wohoo .. 1,5mhz @ 250.000baud

    Might be some artifact but .. it is still nice to know ^^



  • Somehow the graph from the datasheet doesn't fit at all for my internal oscillator.

    Just an example .. I programmed the fuse to output the clock on PortB0 and I got:

    OSCCAL=66;
    Serial.begin(57600);
    ~973 KHz

    OSCCAL=66;
    Serial.begin(115200);
    ~973 KHz

    OSCCAL=240;
    Serial.begin(250000);
    ~1.88 MHz

    I would expect OSCCAL = 66 to get me ~ 6/8 = 800KHz



  • Using Serial.begin(115200) I experienced some lockups of the atmega328p .. serial communication stopped completely as well as all other operation .. WTF ?!


Log in to reply
 

Suggested Topics

0
Online

11.2k
Users

11.1k
Topics

112.5k
Posts