65 Commits (09d926fa11f01dcc5b3fe7003f2332fe787aa73f)

Author SHA1 Message Date
Gustavo Jose de Sousa c2e3f05dbf waf: ardupilotwaf: prefix build context methods with ap_ 9 years ago
Gustavo Jose de Sousa 3d22490397 waf: examples: use methods from bld instead of ardupilotwaf 9 years ago
Gustavo Jose de Sousa d281067bcc waf: make example binaries be placed in 'examples' dir 9 years ago
Lucas De Marchi a096703b06 Global: don't link with AP_Progmem 9 years ago
Lucas De Marchi 88319f52f7 AP_Declination: remove line continuation slashes 9 years ago
Lucas De Marchi 3ae0082f52 AP_Declination: stop using Progmem.h 9 years ago
Caio Marcelo de Oliveira Filho 6e7b73610d waf: add waf support 9 years ago
Caio Marcelo de Oliveira Filho 0ae2fe6fcd AP_Declination: example uses millis/micros/panic functions 9 years ago
Andrew Tridgell 8f4ce7f20b build: removed all nocore.inoflag files 9 years ago
Andrew Tridgell c81d4fa07b AP_Declination: fixed example build 9 years ago
Lucas De Marchi 5244559010 Minimize AP_Progmem.h includes 9 years ago
Lucas De Marchi 1b07dabeb7 Replace prog_char and prog_char_t with char 9 years ago
Lucas De Marchi 831d8acca5 Remove use of PROGMEM 9 years ago
Lucas De Marchi e4b313d2ca Replace use of memcpy_P() with memcpy() 9 years ago
Caio Marcelo de Oliveira Filho 918a339660 AP_Declination: remove unnecessary board include from example 9 years ago
Caio Marcelo de Oliveira Filho ec52df991c build: compile only the HAL files needed by the board 9 years ago
Caio Marcelo de Oliveira Filho 2e464a53c2 AP_HAL: make code not depend on concrete HAL implementations 9 years ago
Gustavo Jose de Sousa 23f634835d AP_Declination: standardize inclusion of libaries headers 10 years ago
Andrew Tridgell c18c84fbe1 AP_Declination: convert example from .pde to .cpp 10 years ago
Andrew Tridgell 2502ca3ec7 AP_Declination: fixed example build 11 years ago
Andrew Tridgell 97b7130bb9 libraries: update license header to GPLv3 12 years ago
Andrew Tridgell 82aec0ef6c AP_Declination: fixed indent-tabs-mode 12 years ago
Andrew Tridgell 261eb6d841 AP_Declination: fixed example build 12 years ago
Andrew Tridgell ba83950fc4 libraries: replace constrain() with constrain_float() 12 years ago
James Bielman 5631f865b2 Update floating point calculations to use floats instead of doubles. 12 years ago
Andrew Tridgell 374af1cd14 build: change from Arduino.mk to apm.mk 12 years ago
Andrew Tridgell a1187519a8 AP_HAL: use AP_HAL_BOARD_DRIVER in remaining test sketches 12 years ago
Pat Hickey eb530b86e8 move Arduino.mk to /mk/Arduino.mk 12 years ago
Andrew Tridgell 7d27e420ae AP_HAL: remove unnecessary Arduino.h includes 12 years ago
Andrew Tridgell 69af1add15 Declination: fixes for AP_HAL progmem interface 12 years ago
Pat Hickey 475da4eca4 CONFIG_HAL_BOARD - test sketches fixed up, build all passes 12 years ago
Pat Hickey a4f1f6a5db AP_Progmem: fix dependencies for all sketches touched by AP_HAL_AVR 12 years ago
Pat Hickey 9aada26e34 AP_Declination: translated to AP_HAL 12 years ago
Pat Hickey 3f1d9d7f69 AP_Param: #include <AP_Param.h> fixups for libraries & sketches 12 years ago
rmackay9 56f88821e9 AP_AHRS: fix example sketch 12 years ago
uncrustify d6d51e4116 uncrustify libraries/AP_Declination/AP_Declination.h 13 years ago
uncrustify bcfff533f0 uncrustify libraries/AP_Declination/AP_Declination.cpp 13 years ago
uncrustify 6f4533c8a8 uncrustify libraries/AP_Declination/examples/AP_Declination_test/AP_Declination_test.pde 13 years ago
Andrew Tridgell 927834106d AP_Declination: save some more memory by putting the declination keys in progmem 13 years ago
Andrew Tridgell 70d4280935 AP_Declination: added timing information to declination test 13 years ago
Andrew Tridgell 175352845c AP_Declination: fixed build under SITL 13 years ago
Adam M Rivera ca82350f17 AP_Declination_test: Updated test with better print messages. 13 years ago
Adam M Rivera 01b1e58f7d AP_Declination: Update LUT based on the changes that I made in the LUT generation code. This LUT is the final version that has no truncation. 13 years ago
Adam M Rivera 23f6093f05 AP_Declination: Updated comments to reflect new LUT size. 13 years ago
Adam M Rivera 50791a8b0f AP_Declination: Removed trailing zero deltas as they have no impact on the final value and only take up extra bytes. 13 years ago
Adam M Rivera f35e447927 AP_Declination: Updated compressed lookup value table. Located 9 more failure points due to truncation on the packed LUT. 13 years ago
Adam M Rivera 72b70c394c AP_Declination: Found 7 of the 22 failure points and fixed them. The issue with those 7 was the way I originally packed the value array. The last delta values on some rows were getting truncated. The new number of failures is down to 15 - WIP. 13 years ago
Adam M Rivera 076192db51 AP_Declination: Updated test to run in 5 degree increments. Changed to only print failures and also print total pass vs total fail. 13 years ago
Adam M Rivera 230ca1ddca AP_Declination: Moved check for y index of zero to after the y index is properly transformed. 13 years ago
Adam M Rivera e0fa053c79 AP_Declination: The exception signs unpacking logic was incorrect. I was shifting a 1 value left y%8 which would have needed a the signs to be packed right to left. My packed signs byte was packed left to right (left most being the 0 position) so I needed to reverse the shifting. 13 years ago