summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add Travis CI supporttravisLorenz Meier2015-04-106-1/+403
|
* STM32 CAN: More places where FR instead FIR usedGregory Nutt2015-04-091-4/+4
|
* Fix several typos in commentsGregory Nutt2015-04-099-9/+9
|
* Update ChangeLogGregory Nutt2015-04-092-0/+3
|
* apps/examples/ostest: Add a test for the sigprocmask, sighold, and sigrelseGregory Nutt2015-04-097-2/+252
|
* Missing i found by David SidraneGregory Nutt2015-04-091-1/+1
|
* Refresh some configurationsGregory Nutt2015-04-093-248/+620
|
* Fix some issues introduced to Freedom-KL26Z build. Duplicate changes in ↵Gregory Nutt2015-04-096-255/+64
| | | | Freedom-KL25Z
* Fixes for clean build of zp214xpa/nsh configurationGregory Nutt2015-04-095-96/+378
|
* exampels/nxlines: Needs to include sys/boardctl.cGregory Nutt2015-04-091-0/+1
|
* boardctl(): Typo in ADC logicGregory Nutt2015-04-091-1/+1
|
* SIG_HOLD is not yet implementedGregory Nutt2015-04-091-5/+10
|
* Update ChangeLogGregory Nutt2015-04-091-0/+12
|
* Fix some changes that crept in recently:Gregory Nutt2015-04-091-1/+1
|
* Last changes to message queue prototypes did not make it into call gate logic.Gregory Nutt2015-04-091-3/+3
|
* Fixes to asinh(), atanh(), and sinh(): The 'basic' expansions all exhibited ↵Gregory Nutt2015-04-093-5/+49
| | | | bad cancellation errors near zero (<= 1E-10). This can be easily seen e.g. with x = 1E-30, the results are all zero though they should be extremely close to x. The cutoff values (1E-5, 1E-9) are chosen so that the next term in the Taylor series is negligible (for double). Functions could maybe be optimized to use only first term (x) and a smaller cutoff, just bigger than where the cancellation occurs.
* Update ChangeLogGregory Nutt2015-04-091-2/+2
|
* Add sigset()Gregory Nutt2015-04-094-20/+288
|
* Remove executable flag from more .c and .h filesGregory Nutt2015-04-0924-0/+0
|
* Remove executable flag from some C filesGregory Nutt2015-04-093-0/+0
|
* Update ChangeLogGregory Nutt2015-04-091-1/+4
|
* Add sighold(), sigrelse(), sigignore(), and sigpause().Gregory Nutt2015-04-097-3/+306
|
* sigaddset() and sigdelset() need to set errno if a bad signal number is receivedGregory Nutt2015-04-093-75/+19
|
* CosmeticGregory Nutt2015-04-092-1/+2
|
* SAMA5 Serial: Reading IMR and disabling interrupt must be atomicGregory Nutt2015-04-084-14/+35
|
* SAM3/4 and SAMV7 UART: The IMR register is read-only. This means that ↵Gregory Nutt2015-04-084-6/+2
| | | | sam_restoreints() does not actually re-enable UART interrupts.
* SAMA5 Serial: Fix a couple of errors backporting termios and flowcontrolGregory Nutt2015-04-082-5/+13
|
* Update ChangeLogGregory Nutt2015-04-081-16/+12
|
* SAM3/4 and SAMV7 Serial: Serial interrupts left disabled.Gregory Nutt2015-04-082-0/+12
| | | | A side-effect of changing serial settings via TERMIOS (such as tcsetattr) is that serial interrupts were being left disabled. This is not a problem if the serial configuration is changed when there are no open references to the serial device. In that case, serial interrupts are disabled and will not be enabled enabled until the serial device is first opened. But it is fatal if the serial device is already opened and if there is a task waiting to receive data. In that case, the side-effect of disabling interrupts is fatal: That task is then left hanging with interrupts disabled.
* SAMA5D Serial: Backup support for flowcontrol and termios from SAM3/4 -- ↵Gregory Nutt2015-04-081-5/+203
| | | | UNVERIFIED
* Refresh some configurationsGregory Nutt2015-04-083-317/+47
|
* SAMV71-XULT: Update SDRAM refresh rate based on latest softpackGregory Nutt2015-04-081-1/+3
|
* Make some file section headers more consistent with standardGregory Nutt2015-04-08337-346/+338
|
* Remove some carriage returnsGregory Nutt2015-04-081-7/+7
|
* Remove some carriage returnsGregory Nutt2015-04-085-671/+671
|
* Make some file section headers more consistent with standardGregory Nutt2015-04-0877-77/+77
|
* Make some file section headers more consistent with standardGregory Nutt2015-04-0816-16/+16
|
* Make some file section headers more consistent with standardGregory Nutt2015-04-08580-644/+644
|
* Make some file section headers more consistent with standardGregory Nutt2015-04-0863-63/+63
|
* Make some file section headers more consistent with standardGregory Nutt2015-04-0852-52/+52
|
* Make some file section headers more consistent with standardGregory Nutt2015-04-0836-36/+36
|
* Fix some coding style inconsistenciesGregory Nutt2015-04-081-4/+7
|
* Update ChangeLogGregory Nutt2015-04-081-0/+21
|
* Implements CONFIG_TIME_EXTENDED as we discussed relative to providing the ↵Gregory Nutt2015-04-087-11/+168
| | | | last 3 members of the tm struct and support for filling them in and even using the wday in the STM32 RTC. From David Sidrane.
* Make some file section headers more consistent with standardGregory Nutt2015-04-0893-93/+93
|
* apps/modbus: That completes a complete pass; all of the modbus files a ↵Gregory Nutt2015-04-0722-576/+708
| | | | little closer to NuttX coding style. Still not compliant with naming conventions
* Modbus: changes to more C file to make them more compatible with NuttX ↵Gregory Nutt2015-04-074-255/+309
| | | | coding style
* Modbus: changes to several C file to make them more compatible with NuttX ↵Gregory Nutt2015-04-079-612/+750
| | | | coding style
* Modbus: Change to more header files to make them a little more consistent ↵Gregory Nutt2015-04-076-53/+76
| | | | with Nuttx coding stanards. Still not very close
* Modbus: Change to several header files to make them a little more consistent ↵Gregory Nutt2015-04-075-152/+172
| | | | with Nuttx coding stanards. Still not very close