1. 03 Nov, 2016 1 commit
  2. 02 Nov, 2016 2 commits
  3. 01 Nov, 2016 1 commit
  4. 31 Oct, 2016 2 commits
  5. 28 Oct, 2016 2 commits
  6. 27 Oct, 2016 3 commits
  7. 26 Oct, 2016 5 commits
  8. 24 Oct, 2016 1 commit
  9. 21 Oct, 2016 2 commits
  10. 20 Oct, 2016 5 commits
  11. 19 Oct, 2016 2 commits
  12. 18 Oct, 2016 2 commits
    • Deomid Ryabkov's avatar
      Enable MQTT client by default · a17eae41
      Deomid Ryabkov authored
      PUBLISHED_FROM=cb5d5afe166f637082d4b1d1bce5d9c263e91fd0
      a17eae41
    • Deomid Ryabkov's avatar
      CS_P_ESP_LWIP -> CS_P_ESP8266;add CS_P_NXP_KINETIS · 7b05d700
      Deomid Ryabkov authored
      LWIP part has been finally fully split from the ESP part, and ESP
      platform defs reduced to bare minimum. It is now possible to use LWIP
      in either low-level or socket mode without any ESP dependencies,
      and NXP Kinetis platform is the first to make use of it.
      
      PUBLISHED_FROM=4a9055897609c812296bdab5b4943ffde641ced2
      7b05d700
  13. 17 Oct, 2016 1 commit
    • Marko Mikulicic's avatar
      Don't clang-format non checked out things · 31c5ef1b
      Marko Mikulicic authored
      mbed-os is a directory that gets checked out by the mbed cli
      (a tool similar in spirit to miot) and it contains a lot of
      .c sources, so many of them that clang-format burns your CPU.
      
      While we're at it, also fix check_no_ifdefs when running under a commit
      hook.
      
      PUBLISHED_FROM=e5dd457ea3c4f9bd880f2491fb322dffa7abf70a
      31c5ef1b
  14. 14 Oct, 2016 4 commits
  15. 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
  16. 03 Oct, 2016 3 commits
  17. 30 Sep, 2016 2 commits