Gregory Nutt
|
64ab35b399
|
There used to be two ways to pass parameters to new tasks, depending upon the configuration: Either (1) argv[] as created as an array with each string strdup'ed. Or (1) argv[] array and strings were created on the stack before the new task was started. Now, there is only one way, way (1). Way (2) might be slightly more compact, but this is not worth carry the complexity of two different ways of doing the same thing.
|
2014-09-01 15:39:34 -06:00 |
|
Gregory Nutt
|
23147c40a5
|
Remove final traces of the 8015 from the NuttX source tree
|
2014-09-01 13:21:15 -06:00 |
|
Gregory Nutt
|
54fa3b0b59
|
Rename kfree to kmm_free for consistency with other naming conventions
|
2014-08-31 17:04:02 -06:00 |
|
Gregory Nutt
|
e3ff0689bb
|
Rename CONFIG_NUTTX_KERNEL to CONFIG_BUILD_PROTECTED; Partially integrate new CONFIG_BUILD_KERNEL
|
2014-08-29 14:47:22 -06:00 |
|
Gregory Nutt
|
b13d9b4161
|
Rename up_addrenv_assign() to up_addrenv_clone() and generalize its arguments so that can be used for other purposes
|
2014-08-26 12:16:05 -06:00 |
|
Gregory Nutt
|
1725946447
|
Misc changed to get the SAMA5 ELF configuration with address environments working
|
2014-08-25 13:28:13 -06:00 |
|
Gregory Nutt
|
241a7e17bd
|
addrenv interface changes: up_addrenv_create() may need to create .text and .bss/.data separately because of differing access privileges (read/execute vs read/write). And, as a consequence, up_addrenv_vaddr() needs to be split into up_addrenv_vtext(0 and up_addrenv_vdata().
|
2014-08-24 11:54:14 -06:00 |
|
Gregory Nutt
|
2cb9d5c7b0
|
Add addrenv.h; First cut at Cortex-A address environment structures; Add configuration options to setup address enviornment
|
2014-08-24 09:57:53 -06:00 |
|
Gregory Nutt
|
1624e2fbcf
|
Change CONFIG_ADDRENV to CONFIG_ARCH_ADDRENV; change how it is selected -- the architecure must first declare support
|
2014-08-24 06:42:11 -06:00 |
|
Gregory Nutt
|
1d586e6136
|
An address environment is the property of a task group, not of a thread
|
2014-08-22 12:32:34 -06:00 |
|
Gregory Nutt
|
fd484c4de9
|
Add support for statically allocated watchdog timer structures
|
2014-08-22 08:46:34 -06:00 |
|
Gregory Nutt
|
ad9b3f8ab8
|
wdog.h does not contain any application interface, only internal OS interface. Further, it is non-standard. Move wdog.h from include/ to include/nuttx. For the same reason, move the description of the watchdog timer interfaces from the Users Guide to the Porting Guide.
|
2014-08-21 11:16:55 -06:00 |
|
Gregory Nutt
|
eab47a0566
|
Update remaining documents for the 7.4 release
|
2014-08-14 16:34:39 -06:00 |
|
Gregory Nutt
|
686e5d7e3d
|
Tickless: If using an ALARM, then really should report time of expiration
|
2014-08-12 10:00:32 -06:00 |
|
Gregory Nutt
|
66803d0db6
|
Define interfaces to use an alarm instead of an interval timer with the tickless option
|
2014-08-12 07:28:41 -06:00 |
|
Gregory Nutt
|
8855c1369b
|
Cosmetic
|
2014-08-10 16:09:45 -06:00 |
|
Gregory Nutt
|
da0de3284e
|
Fix errors in documentation and comments related to the Tickless OS. From Vijay Kumar
|
2014-08-09 06:41:38 -06:00 |
|
Gregory Nutt
|
a79ecce878
|
Move page fill sources from sched/ to sched/paging
|
2014-08-08 15:08:07 -06:00 |
|
Gregory Nutt
|
b1f10adf5a
|
Minor documentation update
|
2014-08-08 11:29:17 -06:00 |
|
Gregory Nutt
|
8b69cb3ea2
|
Update porting guide
|
2014-08-08 09:17:25 -06:00 |
|
Gregory Nutt
|
0aa7209765
|
Change CONFIG_MSEC_PER_TICK to CONFIG_USEC_PER_TICK. This gives more options for system timers in general, but more importantly, let's us realize higher resolution for the case of CONFIG_SCHED_TICKLESS=y -- of course, at the risk of some new interger overvflow problems
|
2014-08-07 13:42:47 -06:00 |
|
Gregory Nutt
|
caba61999a
|
Remove CONFIG_DISABLE_CLOCK
|
2014-08-07 12:35:24 -06:00 |
|
Gregory Nutt
|
8182037783
|
Rename CONFIG_NX_MOUSE to CONFIG_NX_INPUT, then add CONFIG_NX_XYINPUT_MOUSE and CONFIG_XYINPUT_TOUCHSCREEN
|
2014-07-16 16:31:31 -06:00 |
|
Gregory Nutt
|
ee136ded4b
|
Documentation: Update all images. I think they were all damaged by a wild in place sed in some recent change
|
2014-07-13 15:54:13 -06:00 |
|
Gregory Nutt
|
b224f08fd7
|
All PNG files in repository are corrupted... why?
|
2014-07-11 07:35:09 -06:00 |
|
Gregory Nutt
|
0da9aaeb09
|
Fix some recurring typos: postion->position, *atino->*ation
|
2014-07-08 13:12:36 -06:00 |
|
Gregory Nutt
|
befcb1c961
|
Fix some cloned errors in SAM GPIO interrupt setup
|
2014-07-07 15:54:37 -06:00 |
|
Gregory Nutt
|
8e9df8ade0
|
NET: Misc naming clean-up
|
2014-07-02 17:23:25 -06:00 |
|
Gregory Nutt
|
0eb1666cb0
|
NET: Rename uiplib/UIPLIB to netlib/NETLIB
|
2014-07-02 16:04:25 -06:00 |
|
Gregory Nutt
|
a892171b04
|
SAMA5: Add configuration to assign an XDMAC channel to an HSMCI
|
2014-06-29 08:43:46 -06:00 |
|
Gregory Nutt
|
668f50e116
|
SAMA5D4-EK: Updates to get the at25boot configuration building correctly
|
2014-06-28 09:39:50 -06:00 |
|
Gregory Nutt
|
fce2a79abd
|
Rename uip_driver_s net_driver_s
|
2014-06-27 16:48:12 -06:00 |
|
Gregory Nutt
|
081ff02ec9
|
Add net/README.txt
|
2014-06-27 15:18:18 -06:00 |
|
Gregory Nutt
|
33121dd0d0
|
Various changes associated with symbol tables. Most from Pelle Windestam
|
2014-06-27 08:14:07 -06:00 |
|
Gregory Nutt
|
350fa87fea
|
Prep for NuttX-7.3 release
|
2014-06-25 14:09:41 -06:00 |
|
Gregory Nutt
|
37646044ac
|
Move include/nuttx/net/uip/uip-arch.h to include/nuttx/net/netdev.h
|
2014-06-24 09:28:44 -06:00 |
|
Gregory Nutt
|
c7f4f91e77
|
Minor documentation update
|
2014-06-12 12:33:54 -06:00 |
|
Gregory Nutt
|
5070759021
|
Add board support for the SAMA5D4-EK
|
2014-06-06 12:37:36 -06:00 |
|
Gregory Nutt
|
5397e49665
|
Add support for the Olimex STM32 h405. From Martin Lederhilger
|
2014-06-03 10:34:36 -06:00 |
|
Gregory Nutt
|
e18844de32
|
P-code BINFMT: Add logic to pass information from the binfmt logic to the P-code interpreter. This includes some extension to the binfmt interfaces.
|
2014-05-08 16:58:10 -06:00 |
|
Gregory Nutt
|
7fffa72ee5
|
Add a ROMFS file system for testing the P-Code binary format
|
2014-05-08 11:08:01 -06:00 |
|
Gregory Nutt
|
7594d8b8cf
|
Add serial method so that lower half driver can provide RX flow control information. From Jussi Kivilinna
|
2014-05-08 09:00:33 -06:00 |
|
Gregory Nutt
|
f924601fc1
|
The alternate console device CONFIG_NSH_CONDEV must not be defined unconditionally. This causes errors when using Telnet sessions. This was solved by adding CONFIG_NSH_ALTCONDEV: CONFIG_NSH_ALTCONDEV enables or disables the feature then, if enabled, CONFIG_NSH_CONDEV provides the alternative console device name
|
2014-05-05 08:52:02 -06:00 |
|
Gregory Nutt
|
693ccd67ce
|
Final prep for NuttX-7.2 release
|
2014-04-28 10:53:24 -06:00 |
|
Gregory Nutt
|
f2d25cadf0
|
Support for the Atmel SAM4S Xplaiend Board from Bob Doison
|
2014-04-21 17:34:05 -06:00 |
|
Gregory Nutt
|
d53c3a2090
|
Add support for the STM32F041RE and for the Nucleo-F401RE board. From Frank Bennett
|
2014-04-20 13:42:23 -06:00 |
|
Gregory Nutt
|
f8024cf409
|
More trailing whilespace removal
|
2014-04-13 16:22:22 -06:00 |
|
Gregory Nutt
|
1712f42cf3
|
apps/netutils/ntpclient: Add a primitive NTP client. Initial checkin is untested and probably incomplete
|
2014-04-10 18:15:06 -06:00 |
|
Gregory Nutt
|
5eeb9f97fc
|
Fix a build error when only USB device tracing is enabled (from David Sidrane). Also an update to the USB tracing document
|
2014-04-04 08:56:10 -06:00 |
|
Gregory Nutt
|
09fb2a1893
|
Add basic board support framework for the Atmel SAMA5D3 Xplained board (not finished)
|
2014-03-28 15:20:26 -06:00 |
|