Skip to content
Snippets Groups Projects
  1. Dec 12, 2016
  2. Dec 10, 2016
  3. Dec 09, 2016
  4. Dec 07, 2016
  5. Dec 05, 2016
  6. Dec 03, 2016
  7. Dec 02, 2016
  8. Nov 29, 2016
  9. Nov 28, 2016
  10. Nov 23, 2016
    • Julian Oes's avatar
      px4fmu-v2_default: save more flash · afd6fd38
      Julian Oes authored
      This disables the following modules to save flash:
      - mpu9250 driver because the MPU9250 is rarely used on Pixhawks
      - Snapdragon RC PWM passthrough which is rarely used and definitely a
        special/custom configuration. Also, it will soon be obsolete with the
        upcoming PWM support on Snapdragon.
      afd6fd38
    • Julian Oes's avatar
      cmake: fix git binary hash · 109558cf
      Julian Oes authored
      The generated binary hash was off by one.
      109558cf
  11. Nov 11, 2016
  12. Nov 10, 2016
  13. Nov 08, 2016
  14. Oct 29, 2016
  15. Oct 26, 2016
    • Carlo Wood's avatar
      Compile fixes for old/unused targets. · 5b52cd0f
      Carlo Wood authored
      These are some changes that I needed to compile
      most of the unsupported targets.
      
      After this all (make list_config_targets) compile
      for me except: posix_eagle_muorb, posix_sdflight_default
      and qurt_eagle_legacy_driver_default.
      5b52cd0f
  16. Oct 22, 2016
    • Carlo Wood's avatar
      Clean up of app.h · 6fc30c76
      Carlo Wood authored
      app.h, generated from app.h_in, has unnecessary code duplication
      and isn't a header file (it defines globals, static functions
      and doesn't have a header guard, moreover, it has a 'using namespace
      std;'). Because of this, a real headerfile that declares the stuff
      defined in apps.h was missing leading to even more code duplication:
      scattered forward declarations in .cpp files and an often repeated
      type of std::map<std::string, px4_main_t>.
      
      This patch moves cmake/qurt/apps.h_in to src/platforms/apps.cpp.in
      (with some changes) and removes cmake/posix/apps.h_in.
      Then src/platforms/apps.cpp.in is split into src/platforms/apps.cpp.in
      and src/platforms/apps.h.in, splitting declarations from definitions.
      
      A typedef is defined for the map (apps_map_type).
      
      The main difference between cmake/posix/apps.h_in and
      cmake/qurt/apps.h_in was that the first defined a global 'apps',
      while qurt stores the apps in QShell. I opted to get rid of
      the global variable (which are in general evil for various reasons)
      and used the API of cmake/qurt/apps.h_in where a provided 'apps'
      map is initialized with a call to init_app_map. Thus removing
      the existing code duplication.
      6fc30c76
  17. Oct 19, 2016
  18. Oct 18, 2016
Loading