1. 13 Oct, 2016 2 commits
    • Deomid Ryabkov's avatar
      MG_DISABLE_MQTT -> MG_ENABLE_MQTT · b298d46a
      Deomid Ryabkov authored
      PUBLISHED_FROM=34e6028b68e286f81be7ba0f8ae73b760f144131
      b298d46a
    • Deomid Ryabkov's avatar
      Change from using #ifdef to #if for features tests · bafc30be
      Deomid Ryabkov authored
      "#if FOO" still works with simple -DFOO, but gives more flexibility.
      Specifically, if user expressed no preference (FOO is not defined),
      we can apply reasonable defaults (this is the legitimate use of ifdef).
      
      In short, from now on, please use
      
       #if MG_ENABLE_FOO
      
      instead of
      
       #ifdef MG_ENABLE_FOO
      
      Since we are all used to #ifdef, this change also adds a precommit check
      to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
      "ifdef" and "if defined()" are not allowed to be used with macros that contain
      ENABLE or DISABLE, unless the like also contains "ifdef-ok".
      
      Hence, if you are sure you want to use ifdef, use this:
      
       #ifdef MG_ENABLE_FOO /* ifdef-ok */
      
      PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
      bafc30be
  2. 03 Oct, 2016 3 commits
  3. 30 Sep, 2016 4 commits
  4. 29 Sep, 2016 1 commit
  5. 28 Sep, 2016 2 commits
  6. 23 Sep, 2016 1 commit
  7. 16 Sep, 2016 1 commit
  8. 15 Sep, 2016 1 commit
  9. 09 Sep, 2016 3 commits
  10. 05 Sep, 2016 2 commits
  11. 31 Aug, 2016 1 commit
  12. 26 Aug, 2016 1 commit
  13. 22 Aug, 2016 1 commit
  14. 18 Aug, 2016 1 commit
  15. 16 Aug, 2016 2 commits
  16. 12 Aug, 2016 1 commit
  17. 08 Aug, 2016 4 commits
  18. 27 Jul, 2016 1 commit
  19. 13 Jul, 2016 2 commits
  20. 06 Jul, 2016 1 commit
  21. 01 Jul, 2016 1 commit
  22. 28 Jun, 2016 1 commit
  23. 20 Jun, 2016 1 commit
  24. 13 Jun, 2016 2 commits
    • rojer's avatar
      Change main code image filename in CC3200 bundles · a67323fc
      rojer authored
      /sys/mcuimg.bin is just another file on SLFS, no reason to give it
      special treatment. Preserve backward compatibility with old bundles:
      translate sys_mcuimg.bin -> /sys/mcuimg.bin
      
      PUBLISHED_FROM=be89a3d9785046f09279fef9e2bb6604eeaa576e
      a67323fc
    • rojer's avatar
      Add timestamp to LB log · 1daa5e69
      rojer authored
      PUBLISHED_FROM=61b87fcee909241d5bdf2ba7407003c0c3cfbd72
      1daa5e69