Gregory Nutt
|
70e502adb0
|
Replace irqsave() with enter_critical_section(); replace irqrestore() with leave_critical_section()
|
2016-02-13 19:11:09 -06:00 |
|
Gregory Nutt
|
3b6a502eff
|
For LK MCUs, rename up_spiinitialize to kl_spibus_initialize
|
2016-01-26 16:19:03 -06:00 |
|
Gregory Nutt
|
b7cbbab761
|
Remove CONFIG_SPI_OWNBUS: Now it is not just a good idea, it is the law
|
2016-01-23 18:10:21 -06:00 |
|
Gregory Nutt
|
4bd6adb725
|
Add dummy hwfeatures method to all SPI interfaces
|
2016-01-23 15:09:38 -06:00 |
|
Gregory Nutt
|
daea1e614b
|
All architectures need to build ELF support if either CONFIG_ELF or CONFIG_MODULE are selected. Cortex-M7 also must support module cache corherence
|
2015-12-12 09:35:05 -06:00 |
|
Gregory Nutt
|
79df561669
|
Rename board_led_off to board_autoled_off
|
2015-11-01 09:09:36 -06:00 |
|
Gregory Nutt
|
b28e32e3d3
|
Rename board_led_on to board_autoled_on
|
2015-11-01 09:07:06 -06:00 |
|
Gregory Nutt
|
b6638315a4
|
Correct some spacing issues
|
2015-10-07 11:39:06 -06:00 |
|
Gregory Nutt
|
d0d62668e7
|
Make some spacing comply better with coding standard
|
2015-10-06 18:32:16 -06:00 |
|
Gregory Nutt
|
3fdd914203
|
Costmetic fixes to C coding style
|
2015-10-05 17:13:53 -06:00 |
|
Gregory Nutt
|
6fc6d17760
|
Fix some spacing problems
|
2015-10-04 14:59:08 -06:00 |
|
Gregory Nutt
|
7ced84c5f0
|
Standardize the width of all comment boxes in C files
|
2015-10-03 07:25:03 -06:00 |
|
Gregory Nutt
|
36726b1bc4
|
Standardize the width of all comment boxes in header files
|
2015-10-02 17:42:29 -06:00 |
|
Gregory Nutt
|
fb926e7283
|
Fix references to the no-longer-existent misc/ directory in comments, README files, and documentation
|
2015-06-28 08:08:57 -06:00 |
|
Gregory Nutt
|
29136e51cc
|
Clean up and review of header files for conformance to standards
|
2015-06-12 19:26:01 -06:00 |
|
Gregory Nutt
|
4712c23218
|
Make some imported files a little closer to the NuttX coding standard
|
2015-06-11 09:14:44 -06:00 |
|
Gregory Nutt
|
38735fafeb
|
More missing semicolons after DEBUGASSERT
|
2015-05-27 13:32:39 -06:00 |
|
Gregory Nutt
|
178321fb0e
|
KL: Fix offset to the TPM status register. From Michael Hope.
|
2015-05-12 07:08:33 -06:00 |
|
Gregory Nutt
|
2325f2c529
|
kl: enable the clocks to UART1 and UART2. The previous version would cause a hard fault on startup due to the modules not being clocked. Also drop the GPIO configuration as it's done during kl_start(). From Michael Hope.
|
2015-05-07 17:17:54 -06:00 |
|
Gregory Nutt
|
292cb9fe2f
|
kl: fix PWM debugging. TPM1 and TPM2 have two channels instead of six and will hard fault if you try to read the missing channels. From Michael Hope.
|
2015-05-07 17:17:53 -06:00 |
|
Gregory Nutt
|
8062555384
|
Add support for the KL25Z64. The KL25Z64 is a lower memory variant of the KL25Z128 and is used on the Teensy LC. From Michael as SourceForge patch 50.
|
2015-05-07 06:47:17 -06:00 |
|
Gregory Nutt
|
929ea217c7
|
Remove executable flag from more .c and .h files
|
2015-04-09 08:20:57 -06:00 |
|
Gregory Nutt
|
ae15c6963c
|
Make some file section headers more consistent with standard
|
2015-04-08 08:04:12 -06:00 |
|
Gregory Nutt
|
429863f348
|
arch/: board function prototypes are now in include/nuttx/board.h. Remove from architecture header file; Add inclusion of nuttx/board.h to all files referencing board functions
|
2015-02-27 17:19:38 -06:00 |
|
Gregory Nutt
|
24e51794f9
|
Kinetis: Add architectural support for the K26Z128VLH4. From Derek B. Noonburg
|
2015-02-11 07:15:45 -06:00 |
|
Gregory Nutt
|
30b141e2c8
|
Remove CONFIG_DEBUG_STACK. Adding CONFIG_STACK_COLORATION makes this configuration option pointless
|
2015-01-24 06:49:51 -06:00 |
|
Gregory Nutt
|
e8f266001d
|
Add CONFIG_STACK_COLORATION that does the same thing as CONFIG_DEBUG_STACK but without enabling debug. From David Sidrane
|
2015-01-24 06:03:39 -06:00 |
|
Gregory Nutt
|
da8b040984
|
More changes associated with GPIO interrupt for the KL architecture from Alan Carvalho de Assis
|
2014-12-13 17:30:25 -06:00 |
|
Gregory Nutt
|
810fcd297e
|
Add GPIO interrupt capability for the KL architecture. The patch is almost the same as kinetis_pinirq.c, just minor modifications and rename kl_pinirq to kl_gpioirq to make it more generic to developers. From Alan Carvalho de Assis
|
2014-12-13 17:27:06 -06:00 |
|
Gregory Nutt
|
7dfb945979
|
I2C header file for the Freescale KL family. From Alan Carvalho de Assis.
|
2014-11-23 16:49:00 -06:00 |
|
Gregory Nutt
|
33a12dfb84
|
Trivial, cosmetic typos in comments
|
2014-10-20 08:12:07 -06:00 |
|
Gregory Nutt
|
31b8137956
|
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
|
e11679acf8
|
Rename CONFIG_NUTTX_KERNEL to CONFIG_BUILD_PROTECTED; Partially integrate new CONFIG_BUILD_KERNEL
|
2014-08-29 14:47:22 -06:00 |
|
Gregory Nutt
|
6455f60c60
|
Remove os_internal.h it has been replace by several new header files under sched/. There have been some sneak inclusion paths via os_internal.h, so expect a few compilation errors for some architectures
|
2014-08-08 18:39:28 -06:00 |
|
Gregory Nutt
|
1c99d53bb1
|
Move clock functions from sched/ to sched/clock
|
2014-08-08 14:43:02 -06:00 |
|
Gregory Nutt
|
594083d870
|
Rename up_timerinit() to up_timer_initailize(); Add prototypes for candidate interfaces for the tickless OS; Don't build existing timer initialization logic if CONFIG_SCHED_TICKLESS is defined.
|
2014-08-06 16:26:01 -06:00 |
|
Gregory Nutt
|
bac1ab9a34
|
Make sure that all references to up_prioritize_irq() are conditioned on CONFIG_ARCH_IRQPRIO. Noted by Make Smith
|
2014-05-20 17:48:39 -06:00 |
|
Gregory Nutt
|
af2bb81ac2
|
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
|
25d4ff745b
|
More trailing whilespace removal
|
2014-04-13 16:22:22 -06:00 |
|
Gregory Nutt
|
c708eff608
|
Make sure that there is one space after for
|
2014-04-12 13:28:22 -06:00 |
|
Gregory Nutt
|
828dd726d9
|
Mostly cosmetic clean-up of comments
|
2014-02-17 19:22:53 -06:00 |
|
Gregory Nutt
|
6fea68c36e
|
Add basic framework to support the Atmel SAMD Cortex-M+ chip
|
2014-02-12 15:07:11 -06:00 |
|
Gregory Nutt
|
b3792fcd86
|
Many changes to reduce complaints from CppCheck. Several latent bugs fixes, but probably some new typos introduced
|
2014-02-10 18:08:49 -06:00 |
|
Gregory Nutt
|
a26b03d0d0
|
rename up_led*() functions to board_led_*()
|
2014-01-24 14:28:49 -06:00 |
|
Gregory Nutt
|
4de5e40669
|
Individual IRQs are not longer disabled on each interrupt. See ChangeLog for detailed explanation
|
2014-01-15 08:09:19 -06:00 |
|
Gregory Nutt
|
d01808c603
|
LM: Don't initialize .data if running in SRAM. Global missing intialize type. SAMA5 NAND: Fix for read nand in smaller chunks
|
2013-12-05 10:37:55 -06:00 |
|
Gregory Nutt
|
8cc9d6a572
|
Kinetis KL: PWM driver from Alan Carvalho de Assis
|
2013-11-10 10:34:45 -06:00 |
|
Gregory Nutt
|
183421fe07
|
KL: Now builds up_puts
|
2013-10-01 11:51:27 -06:00 |
|
Gregory Nutt
|
e4074e1e21
|
KL: Missing header file in low level getc logic
|
2013-10-01 11:25:01 -06:00 |
|
Gregory Nutt
|
d4e689ef1a
|
Add freedom-kl25z/minnsh configuration: This is an experiment to see just how small we and get an NSH configuration. From Alan Carvalho de Assis.
|
2013-09-30 09:20:11 -06:00 |
|
Gregory Nutt
|
dc3ac21264
|
KL25Z: Add low-level up_lowgetc function that can be used to provide an NSH console when the file system (and hence the serial driver) is disabled. From Alan Carvalho de Assis
|
2013-09-30 09:15:31 -06:00 |
|
Gregory Nutt
|
babcd56908
|
KL25Z: Add low-level up_lowgetc function that can be used to provide an NSH console when the file system (and hence the serial driver) is disabled. From Alan Carvalho de Assis
|
2013-09-30 09:11:54 -06:00 |
|
Gregory Nutt
|
47d4b41bad
|
Freescale Kinetis KL25Z PIT and TPM module register definitions
|
2013-09-15 17:00:50 -06:00 |
|
Gregory Nutt
|
56f9092a87
|
Fix all occurrences of "the the" in documentation and comments
|
2013-08-27 09:40:19 -06:00 |
|
Gregory Nutt
|
8b317e9ea3
|
Standard configuration variables used to enable interupt controller debug; SAMA5: Correct handling of spurious interrupts
|
2013-08-03 08:22:37 -06:00 |
|
Gregory Nutt
|
cb3f394d53
|
Improve some ARMv7-A/M floating point register save time; Add floating point register save logic for ARMv7-A
|
2013-07-23 17:52:06 -06:00 |
|
Gregory Nutt
|
a954eb76b2
|
Created new directories to hold SPI-related files
|
2013-07-01 08:11:54 -06:00 |
|
Gregory Nutt
|
7a65c32d4b
|
Straighten out issues about who calls C++ initializers with CXXTEST or HELLOXX are built as NSH applications; Add an ofstream test to CXXTEST suggested by Michael; Update many defconfig fiels to that they set configurations to handle C++ constructors just as before these configuration changes
|
2013-06-21 09:32:57 -06:00 |
|
Gregory Nutt
|
4fded8a25c
|
More KL25Z SPI fixes
|
2013-06-20 19:58:45 -06:00 |
|
Gregory Nutt
|
6e2fe7ccaf
|
KL25Z GPIO register dump function now compiles
|
2013-06-20 18:00:56 -06:00 |
|
Gregory Nutt
|
d088cbec5b
|
Fix backward wait condition in KL24Z SPI driver
|
2013-06-20 17:39:42 -06:00 |
|
Gregory Nutt
|
2e40a98c74
|
Add framework for managing SPI-related discretes on the Freedom KL25Z board.
|
2013-06-20 13:50:16 -06:00 |
|
Gregory Nutt
|
3c05e28e6d
|
More Freedom KL25Z changed to and from Alan Carvalho de Assis
|
2013-06-19 20:50:27 -06:00 |
|
Gregory Nutt
|
bdc68f73ad
|
Fix errors in KL25Z SPI driver reported by Alan Carvalho de Assis
|
2013-06-19 19:32:13 -06:00 |
|
Gregory Nutt
|
e377bab446
|
SPI register definition file updated to include a few differences for the SAM4L
|
2013-06-19 16:03:19 -06:00 |
|
Gregory Nutt
|
23579f3af4
|
Add SPI driver for the Freescale KL25Z
|
2013-06-19 12:10:01 -06:00 |
|
Gregory Nutt
|
5368531d60
|
Add SPI register definitions for the Freescale KL25Z
|
2013-06-19 09:56:32 -06:00 |
|
Gregory Nutt
|
a56bf3f8b3
|
Freescale KL25Z support from Alan Carvalho de Assis
|
2013-06-18 11:20:57 -06:00 |
|
Gregory Nutt
|
98787f4717
|
Various changes and bigfixes for problems detected by CppCheck
|
2013-05-09 14:23:34 -06:00 |
|
Gregory Nutt
|
c6009fa2a4
|
Fixes LEDs on the Freedom KL25Z board
|
2013-05-06 11:07:53 -06:00 |
|
Gregory Nutt
|
ec84669a94
|
Repartitioning of header files for Kinetis L
|
2013-05-02 09:24:36 -06:00 |
|
Gregory Nutt
|
bd953b4919
|
Freedom KL25Z pin mux'ing fixes from Alan Carvalho de Assis
|
2013-05-02 06:08:50 -06:00 |
|
Gregory Nutt
|
3aa94411be
|
Remove up_assert_code
|
2013-04-25 15:19:59 -06:00 |
|
Gregory Nutt
|
4bce3b097d
|
KL15Z: Fix GPIO base addresses; remove GCR header file
|
2013-04-25 12:24:11 -06:00 |
|
Gregory Nutt
|
dfb5ab1eab
|
KL25Z typos: AIPS, not APS or AIP
|
2013-04-25 11:10:58 -06:00 |
|
Gregory Nutt
|
29c4896789
|
KL25Z: No Ethernet, no SDHC. TPM instead of FTM
|
2013-04-25 10:35:18 -06:00 |
|
Gregory Nutt
|
88be5781b5
|
KL25Z: Fix serial driver; freedom-kl25z/nsh configuration now works
|
2013-04-25 10:23:47 -06:00 |
|
Gregory Nutt
|
5cd86229a8
|
KL25Z: Fix some memory mapp and register definitions; no UART3-5
|
2013-04-25 09:06:58 -06:00 |
|
Gregory Nutt
|
525f7dd7c9
|
Fix KL25Z clock definitions in board.h
|
2013-04-24 18:29:26 -06:00 |
|
Gregory Nutt
|
7248a3cde4
|
Minor Freedom-KL25Z updates
|
2013-04-24 16:46:38 -06:00 |
|
Gregory Nutt
|
4f91bbbc4c
|
cosmetic change to kl_clockconfig
|
2013-04-17 20:25:33 -06:00 |
|
Gregory Nutt
|
0f8a9064cb
|
Fix Freedom KL25Z SysTick rate
|
2013-04-17 12:44:13 -06:00 |
|
Gregory Nutt
|
d2b162bb5c
|
Update authorship
|
2013-04-17 07:39:32 -06:00 |
|
Gregory Nutt
|
6f6c6e3a55
|
Addition cleanup after last switch from BASEPRI to PRIMASK for Cortex-M0
|
2013-04-16 18:29:01 -06:00 |
|
Gregory Nutt
|
a8004f9e07
|
Fix major misthink in Cortex-M0 port: The Cortex-M0 has no BASEPRI register. We have to revert to using the nasty PRIMASK register
|
2013-04-16 18:00:59 -06:00 |
|
Gregory Nutt
|
9da8869efc
|
Fix KL25Z interrupt enable/disable logic
|
2013-04-16 14:54:08 -06:00 |
|
Gregory Nutt
|
a72a715cfb
|
Some clocking fixes for the Freedom KL25Z
|
2013-04-16 14:06:16 -06:00 |
|
Gregory Nutt
|
a5b7e65b20
|
Misc changes for clean compilation of freedom-kl25z config
|
2013-04-16 09:53:15 -06:00 |
|
Gregory Nutt
|
5334562196
|
Initial support for the Kinetis L family and the Freedom KL25Z board from Alan Carvalho de Assis
|
2013-04-16 08:48:42 -06:00 |
|