..
a1x
Standardize the width of all comment boxes in header files
2015-10-02 17:42:29 -06:00
am335x
arch/arm/include/amm335x: Trivial, cosmetic changes after review
2019-01-08 08:15:04 -06:00
arm
Squashed commit of the following:
2019-04-29 14:52:05 -06:00
armv6-m
Squashed commit of the following:
2019-04-29 14:52:05 -06:00
armv7-a
Squashed commit of the following:
2019-04-29 14:52:05 -06:00
armv7-m
arch/arm/include/armv7-m/syscall.h: ARM EABI specifies that the stack should be aligned by 8 on function calls, inside the function is not required to be aligned by 8. Since these functions call svc, compiler doesn't know that the svc is a function, therefore it does not do any stack management. This change pushes an even number of args to the stack and maintains an 8 byte alignment. I've checked the assembly and it doesn't cause any more overhead that the hand written assembly.
2019-12-16 09:10:08 -06:00
armv7-r
Squashed commit of the following:
2019-04-29 14:52:05 -06:00
c5471
Standardize the width of all comment boxes in header files
2015-10-02 17:42:29 -06:00
cxd56xx
cxd56xx improvements ( #48 ) and various other fixes ( #49 )
2020-01-07 18:29:52 -03:00
dm320
Standardize the width of all comment boxes in header files
2015-10-02 17:42:29 -06:00
efm32
In the current implementation we only use very high priority interrupts (levels 0, 0x10 and 0x20 in CORTEX-M speak) but that means there are loads of lower priority ones that are effectively unused. I have *not* changed the semantics of these levels but have 'shifted' them to be based around the midpoint of the available interrupts (0x80) rather than at the top end....that allows for interrupts to be defined above (or, indeed, below) them as needed by the application. This should have no functional effect on existing code but adds in a clean capability to define higher priority interrupts.
2018-12-03 17:41:59 -06:00
imx1
i.MX6: Add IRQ header file
2016-02-28 14:07:53 -06:00
imx6
Fix lots of typos in C comments and Kconfig help text
2018-07-08 18:24:45 -06:00
imxrt
Merged imxrt1020 into master
2019-04-30 16:08:46 -06:00
kinetis
Merged in dagar/nuttx/pr-kinetic_minor_fix (pull request #820 )
2019-01-19 15:39:46 +00:00
kl
arch/: Clean up some naming and spacing.
2018-06-20 15:38:06 -06:00
lc823450
In the current implementation we only use very high priority interrupts (levels 0, 0x10 and 0x20 in CORTEX-M speak) but that means there are loads of lower priority ones that are effectively unused. I have *not* changed the semantics of these levels but have 'shifted' them to be based around the midpoint of the available interrupts (0x80) rather than at the top end....that allows for interrupts to be defined above (or, indeed, below) them as needed by the application. This should have no functional effect on existing code but adds in a clean capability to define higher priority interrupts.
2018-12-03 17:41:59 -06:00
lpc17xx_40xx
Merged in jjlange/nuttx/lpc40xx (pull request #946 )
2019-07-11 16:50:00 +00:00
lpc31xx
Standardize the width of all comment boxes in header files
2015-10-02 17:42:29 -06:00
lpc43xx
In the current implementation we only use very high priority interrupts (levels 0, 0x10 and 0x20 in CORTEX-M speak) but that means there are loads of lower priority ones that are effectively unused. I have *not* changed the semantics of these levels but have 'shifted' them to be based around the midpoint of the available interrupts (0x80) rather than at the top end....that allows for interrupts to be defined above (or, indeed, below) them as needed by the application. This should have no functional effect on existing code but adds in a clean capability to define higher priority interrupts.
2018-12-03 17:41:59 -06:00
lpc54xx
symtab/Makefile: When system wide locale is set (i.e. en_US.UTF-8) then 'read' is ordered after 'readdir' even if separator is set to quotation mark and key set to 2. When C locale is used result is correct.
2019-08-14 11:02:30 -06:00
lpc214x
Fix names of pre-processor variables used in header file idempotence
2016-08-06 18:48:45 -06:00
lpc2378
Fix names of pre-processor variables used in header file idempotence
2016-08-06 18:48:45 -06:00
max326xx
In the current implementation we only use very high priority interrupts (levels 0, 0x10 and 0x20 in CORTEX-M speak) but that means there are loads of lower priority ones that are effectively unused. I have *not* changed the semantics of these levels but have 'shifted' them to be based around the midpoint of the available interrupts (0x80) rather than at the top end....that allows for interrupts to be defined above (or, indeed, below) them as needed by the application. This should have no functional effect on existing code but adds in a clean capability to define higher priority interrupts.
2018-12-03 17:41:59 -06:00
moxart
Standardize the width of all comment boxes in header files
2015-10-02 17:42:29 -06:00
nrf52
Merged in raiden00/nuttx_nrf52 (pull request #1098 )
2019-12-19 15:40:56 +00:00
nuc1xx
Cosmetic changes to spacing and comments.
2017-04-20 14:08:08 -06:00
s32k1xx
arch/arm/src/s32k1xx: This commit brings in the LPSPI and LPI2C peripheral drivers from the i.MXRT which used the identical IP.
2019-08-21 11:18:40 -06:00
sam34
In the current implementation we only use very high priority interrupts (levels 0, 0x10 and 0x20 in CORTEX-M speak) but that means there are loads of lower priority ones that are effectively unused. I have *not* changed the semantics of these levels but have 'shifted' them to be based around the midpoint of the available interrupts (0x80) rather than at the top end....that allows for interrupts to be defined above (or, indeed, below) them as needed by the application. This should have no functional effect on existing code but adds in a clean capability to define higher priority interrupts.
2018-12-03 17:41:59 -06:00
sama5
Standardize the width of all comment boxes in header files
2015-10-02 17:42:29 -06:00
samd2l2
arch/arm/include/samd2l2/sam_adc.h: I was wrong... this header file does belong in the samd2l2 include directory. It contains IOCTL definitions that are needed by applications. Usage of a chip-specific header file is, however, not really a good portable design because it requires that the application know that it is running on a specific chip. But still, if we are going to do that, the include directory is where the header file belongs. My apologies for the bad judgement.
2019-12-16 03:53:05 -06:00
samd5e5
Author: Gregory Nutt <gnutt@nuttx.org>
2020-01-02 12:35:45 -06:00
samv7
In the current implementation we only use very high priority interrupts (levels 0, 0x10 and 0x20 in CORTEX-M speak) but that means there are loads of lower priority ones that are effectively unused. I have *not* changed the semantics of these levels but have 'shifted' them to be based around the midpoint of the available interrupts (0x80) rather than at the top end....that allows for interrupts to be defined above (or, indeed, below) them as needed by the application. This should have no functional effect on existing code but adds in a clean capability to define higher priority interrupts.
2018-12-03 17:41:59 -06:00
stm32
Merged in raiden00/nuttx_pe (pull request #796 )
2019-01-02 12:12:28 +00:00
stm32f0l0g0
Add support for STM32G070xx
2019-09-17 11:10:38 -06:00
stm32f7
Fixed a compilation error, with irq debugging for stm32f7 and stm32h7 archs.
2020-01-05 21:24:16 +00:00
stm32h7
Squashed commit of the following:
2020-01-02 12:17:16 -03:00
stm32l4
Fixed STM32L4_NUSART for STM32L433XX. ( #9 )
2019-12-31 07:47:06 -06:00
str71x
Clean up and review of header files for conformance to standards
2015-06-12 19:26:01 -06:00
tiva
arch/arm/include/tiva/tm4c_irq.h: Fix wrong IRQ vector number.
2019-11-06 20:43:51 -06:00
tms570
arch/arm/include/tms570, arm/src/armv7-r, and arm/src/tms570: Adds support for the TMS570LS3137ZWT and corrects seversl ARMv7-R and TMS570 issues
2018-04-18 08:58:36 -06:00
xmc4
In the current implementation we only use very high priority interrupts (levels 0, 0x10 and 0x20 in CORTEX-M speak) but that means there are loads of lower priority ones that are effectively unused. I have *not* changed the semantics of these levels but have 'shifted' them to be based around the midpoint of the available interrupts (0x80) rather than at the top end....that allows for interrupts to be defined above (or, indeed, below) them as needed by the application. This should have no functional effect on existing code but adds in a clean capability to define higher priority interrupts.
2018-12-03 17:41:59 -06:00
.gitignore
Move LPC17xx IOCON register definitions from lpc17_gpio.h to lpc17_iocon.h; fix a few more .gitignore files
2013-04-04 18:12:44 -06:00
arch.h
Standardize the width of all comment boxes in header files
2015-10-02 17:42:29 -06:00
elf.h
arch/arm/include/syscall.h: Add missing inclusion of arch/armv7-r/syscall.h for CortexR.
2019-01-26 07:43:31 -06:00
inttypes.h
Add architecture-specific inttypes.h
2016-10-27 16:01:38 -04:00
irq.h
arch/arm: Add the initial cortex-a7 archtiecture support
2019-03-19 11:51:29 -06:00
limits.h
Make some file section headers more consistent with standard
2015-04-08 08:04:12 -06:00
setjmp.h
arch/arm/include/setjmp.h: Add prototypes for setjmp/longjmp functions.
2019-11-17 08:48:17 -06:00
spinlock.h
Fix some typos
2019-09-17 10:46:23 -06:00
stdarg.h
Add a generic GCC stdarg.h header file
2012-07-08 14:50:43 +00:00
syscall.h
arch/arm: Add the initial cortex-a7 archtiecture support
2019-03-19 11:51:29 -06:00
tls.h
TLS: Forgot to add a file before last commit
2016-03-11 12:30:04 -06:00
types.h
Rename irqsave() and irqrestore() to up_irq_save() and up_irq_restore()
2016-02-14 16:11:25 -06:00