Commit Graph

1636 Commits

Author SHA1 Message Date
Gregory Nutt
23075e0b30 Allow NSH date command with no RTC. This command is useful without an RTC too. Also, this permits testing on the simulator which never has an RTC 2015-04-11 12:13:18 -06:00
Gregory Nutt
c341e06e84 Update ChangeLog 2015-04-11 09:38:54 -06:00
Gregory Nutt
8475fcc11a Add master support to modbus. From Darcy Gong 2015-04-11 09:37:31 -06:00
Gregory Nutt
108a6bf660 Add Modbus RTU master logic. From Darcy Gong 2015-04-11 08:18:47 -06:00
Gregory Nutt
5de72252a8 Add Modbus master logic. From Darcy Gong 2015-04-11 08:07:16 -06:00
Gregory Nutt
9da006f916 Minor updates to README files 2015-04-10 11:33:01 -06:00
Gregory Nutt
39715f126f Fix several typos in comments 2015-04-09 16:13:03 -06:00
Gregory Nutt
474793d8e4 Update ChangeLog 2015-04-09 15:55:03 -06:00
Gregory Nutt
ad61a44791 apps/examples/ostest: Add a test for the sigprocmask, sighold, and sigrelse 2015-04-09 15:53:59 -06:00
Gregory Nutt
4d3fa3ca54 exampels/nxlines: Needs to include sys/boardctl.c 2015-04-09 14:23:31 -06:00
Gregory Nutt
50deb7ad20 Remove executable flag from more .c and .h files 2015-04-09 08:20:57 -06:00
Gregory Nutt
158c7f7574 Make some file section headers more consistent with standard 2015-04-08 07:25:06 -06:00
Gregory Nutt
44d966b0a1 apps/modbus: That completes a complete pass; all of the modbus files a little closer to NuttX coding style. Still not compliant with naming conventions 2015-04-07 16:48:09 -06:00
Gregory Nutt
00a091a840 Modbus: changes to more C file to make them more compatible with NuttX coding style 2015-04-07 16:12:49 -06:00
Gregory Nutt
c36f2fd564 Modbus: changes to several C file to make them more compatible with NuttX coding style 2015-04-07 15:57:52 -06:00
Gregory Nutt
b1151ef033 Modbus: Change to more header files to make them a little more consistent with Nuttx coding stanards. Still not very close 2015-04-07 15:01:39 -06:00
Gregory Nutt
af7f087ccf Modbus: Change to several header files to make them a little more consistent with Nuttx coding stanards. Still not very close 2015-04-07 13:50:36 -06:00
Gregory Nutt
6e462908ba apps/system: Clean up Kconfig menuing 2015-04-07 13:23:39 -06:00
Gregory Nutt
4a2000e2ae Ooops accidentally committed some trash debug code 2015-04-07 12:18:08 -06:00
Gregory Nutt
6ad0579b85 Modbus: Misc cleanup 2015-04-07 12:16:15 -06:00
Gregory Nutt
ab30957caa Minor changes to SAMV7 USB register definition file from review 2015-04-06 13:00:48 -06:00
Gregory Nutt
2f0e4e400f Update ChangeLog 2015-04-06 10:59:14 -06:00
Gregory Nutt
5b97e23c90 apps/modbus: Fix some complile problems when TCP is enabled 2015-04-06 10:57:50 -06:00
Gregory Nutt
829fa21e89 drawline/drawLine should not take a boolean to select non lines caps or capping at both ends. drawline/drawLine also needs to be able to put a line cap on one one end of a line 2015-04-05 16:53:51 -06:00
Gregory Nutt
fffcc4682a Update ChangeLogs 2015-04-05 09:46:39 -06:00
Gregory Nutt
f0b5f4a80f Add a 'capped' boolean parameter to all drawline/drawLine functions/methods. The idea is that this will produce better joining between lines 2015-04-05 08:50:01 -06:00
Gregory Nutt
808b6f48e9 Upate ChangeLogs 2015-04-04 11:52:18 -06:00
Gregory Nutt
3bbd9b6f41 More renaming: up_lcdinitialize->board_lcd_initialize, up_lcdgetdev->board_lcd_getdev, up_lcduninitialize->board_lcd_uninitialize 2015-04-04 11:49:15 -06:00
Gregory Nutt
e6294dfe41 Move include/nuttx/timer.h, rtc.h and watchdog.h to include/nuttx/timers/. 2015-04-01 12:37:44 -06:00
Gregory Nutt
53d10aa852 Update ChangeLogs 2015-03-31 17:05:05 -06:00
Gregory Nutt
08f57f5d90 Rename pwm_devinit() to board_pwm_setup(). Add CONFIG_BOARDCTL_PWMTEST that will enable calling board_pwm_setup() from boardctl(). Replace calls to pwm_devinit() in apps/examples/pwm with calls to boardctl(). In all configurations that enable the apps/examples/pwm test, make sure that boardctl() suppoprt is properly enabled. 2015-03-31 16:59:22 -06:00
Gregory Nutt
2be8eee936 Kconfig files: If external graphics initialization is required, it depends on CONFIG_LIB_BOARDCTL and should set CONFIG_BOARDCTL_GRAPHICS 2015-03-31 16:41:48 -06:00
Gregory Nutt
256abd6dba Rename up_nxdrvinit() to board_graphics_setup(). Add CONFIG_BOARDCTL_GRAPHICS that will enabled calls to board_graphics_setup() from boardctrl(). In apps/ and NxWidgts/, replace all calls to up_nxdrvinit with calls to boardctl(). 2015-03-31 16:20:21 -06:00
Gregory Nutt
074b57aa69 Update ChangeLogs 2015-03-31 15:06:05 -06:00
Gregory Nutt
39c47ee3f7 Rename adc_devinit() to board_adc_setup(). Add support to the boardctl() interface so that it can call board_adc_setup() on behalf of an application. Change apps/examples/adc to that is now calls boardctl() instead of adc_devinit() in order to initalize the ADC device. 2015-03-31 15:00:23 -06:00
Gregory Nutt
5e94183319 Update ChangeLogs 2015-03-31 13:26:33 -06:00
Gregory Nutt
9ec66482b6 rch_tcinitialize() and arch_tcunitinitialize() renamed to board_tsc_setup() and board_tsc_teardown(). These are not long called directly by applications but only indirectly throught the crappy boardctl() OS interface. 2015-03-31 13:21:25 -06:00
Gregory Nutt
a1195b4528 Update ChangeLogs 2015-03-31 12:16:43 -06:00
Gregory Nutt
9fcd34f1c4 NSH initialization now calls boardctl(BOARDIOC_INIT) instead of board_app_initaliaze. Modify all configurations: Make sure that CONFIG_LIB_BOARDCTL=y appears wherever CONFIG_NSH_ARCHINIT=y appears. Remove support for CONFIG_NSH_ARCHMAC. It is not used and there are better ways to do that operation 2015-03-31 12:14:16 -06:00
Gregory Nutt
22c7d705a3 Update ChangeLog 2015-03-31 10:22:50 -06:00
Gregory Nutt
6bad91308d Rename arch_nshinitialize() to board_app_initialize() 2015-03-31 10:21:31 -06:00
Gregory Nutt
5ca324cad8 Add some missing dependencies in Kconfig files 2015-03-29 15:52:46 -06:00
Gregory Nutt
c9eff799c0 Cortex-M7: Add support for enabled the D-Cache in write only mode.
SAMV7 Ethernet:  I- and D-Cache are now enabled in the netnsh/ configuration.  D-Cache is enabled in write-though mode.  This mode is necessary because the DMA descriptors are each 8-bytes in size but the D-Cache cache line is 32-bits in size. So it is impossible make coherency for every 8-byte DMA descriptor without write-through.
2015-03-29 14:42:03 -06:00
Gregory Nutt
d8d4a3486c SAMV7 USB: Updates to early initialization logic 2015-03-24 10:05:21 -06:00
Gregory Nutt
83e4bc2f7d Make sure that FPU test, HID keyboard example, and touchscreen options are only available in the FLAT build 2015-03-23 19:03:51 -06:00
Gregory Nutt
7fccf7de1b Rename up_cxxinitialize.c to stm32_cxxinitialize.c 2015-03-23 14:14:01 -06:00
Gregory Nutt
0e060f5d2c Add Olimexino-STM32 board support from David Sidrane 2015-03-20 18:00:10 -06:00
Gregory Nutt
f81be29c2f Costmetic changes name while debugging a filename issue 2015-03-15 12:22:12 -06:00
Gregory Nutt
99d374aab2 Needs to include nuttx/board.h, not nuttx/arch.h for button interfaces 2015-03-14 11:59:44 -06:00
Gregory Nutt
b7768bea79 Bringing PPPD yet closer to the NuttX coding style 2015-03-11 18:47:04 -06:00