summaryrefslogtreecommitdiffstats
path: root/bsps/arm/lpc24xx/include/bsp.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-05-20Update company nameSebastian Huber1-1/+1
The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
2022-07-08bsps/arm/lpc24xx: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2022-03-10bsps/arm/: Scripted embedded brains header file clean upJoel Sherrill1-6/+0
Updates #4625.
2019-03-08bsps: Adjust bsp.h Doxygen groupsSebastian Huber1-13/+13
Update #3706.
2019-03-04bsps: Adjust architecture Doxygen groupsSebastian Huber1-1/+1
- Use CamelCase as it is not used in our C code. Enables simple search and replace. - Prefix with "RTEMS" to aid deployment and integration. It aids searching and sorting. Update #3706.
2018-01-25Remove make preinstallChris Johns1-0/+0
A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.
2016-03-29arm/lpc24xx: Remove include of <rtems/console.h> from <bsp.h> and fix warningsJoel Sherrill1-1/+0
2016-03-25arm/lpc24xx/include/bsp.h: Do not include <rtems/clockdrv.h>Joel Sherrill1-1/+0
2014-10-07libchip/serial: Add alternative NS16550 driverSebastian Huber1-5/+7
Use the Termios device API.
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2014-02-19score: Add RTEMS_FATAL_SOURCE_BSPSebastian Huber1-10/+0
Merge RTEMS_FATAL_SOURCE_BSP_GENERIC and RTEMS_FATAL_SOURCE_BSP_SPECIFIC into new fatal source RTEMS_FATAL_SOURCE_BSP. This makes it easier to figure out the code position given a fatal source and code.
2014-01-10bsp/lpc24xx: Add PL111 supportSebastian Huber1-0/+10
2013-12-09doxygen: refactored doxygen in libbsp to illustrate new rule setDaniel Ramirez1-1/+1
2013-02-11bsp/lpc24xx: Move UART probes to separate filesSebastian Huber1-1/+7
2012-11-15score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber1-10/+12
Include <bsp/default-initial-extension.h> in all BSPs. Call rtems_fatal() with RTEMS_FATAL_SOURCE_EXIT as source and the exit() status code as fatal code in every bsp_cleanup(). Move previous bsp_cleanup() code into bsp_fatal_extension().
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill1-2/+0
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
2012-04-07bsps/arm: Add BSP_ARMV7M_SYSTICK_PRIORITYSebastian Huber1-0/+2
2012-04-07bsps/arm: Add BSP_ARMV7M_IRQ_PRIORITY_DEFAULTSebastian Huber1-0/+2
2012-03-24bsps: Shared ARMv7-M clock driverSebastian Huber1-0/+2
2012-02-11Support for NXP LPC1700 familySebastian Huber1-1/+3
2011-11-082011-11-08 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-9/+21
* include/lpc17xx.h: New file. * Makefile.am, preinstall.am: Reflect change above. Update due to API changes. * configure.ac, console/console-config.c, include/bsp.h, include/io.h, include/irq.h, include/lcd.h, include/lpc-clock-config.h, include/lpc24xx.h, include/start-config.h, irq/irq-dispatch.c, irq/irq.c, misc/bspidle.c, misc/io.c, misc/lcd.c, misc/restart.c, misc/system-clocks.c, ssp/ssp.c, startup/bspreset.c, startup/bspstart.c, startup/bspstarthooks.c, startup/start-config-emc-dynamic.c, startup/start-config-emc-static.c, startup/start-config-pinsel.c: Basic support for LPC17XX. New memory configurations for W9825G2JB75I, IS42S32800B, and SST39VF3201.
2011-02-212011-02-21 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-0/+2
* misc/restart.c: New file. * Makefile.am: Reflect change from above. * include/bsp.h: Declare bsp_restart().
2010-05-202010-05-20 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-0/+2
* Makefile.am, preinstall.am, include/bsp.h, startup/bspstart.c: Use shared output character implementation.
2010-01-12add support for lpc32xxThomas Doerfler1-2/+2
2009-12-15add support for LPC32xxThomas Doerfler1-2/+2
2009-11-29Whitespace removal.Ralf Corsepius1-1/+1
2009-09-18Changes throughout.Thomas Doerfler1-7/+41
2009-08-262009-08-26 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-0/+7
* Makefile.am, preinstall.am, include/bsp.h: Rename BSP specific idle thread to bsp_idle_thread. * misc/bspidle.c: New file. * include/idle.h, misc/idle.c: Removed.
2009-02-27 * README: Added NCS.Thomas Doerfler1-0/+13
* Makefile.am, configure.ac, preinstall.am: Added BSP variants. * console/console-config.c, clock/clock-config.c, ssp/ssp.c: Fixed register settings. Cleanup. * include/bsp.h: Added network defines and functions. * include/lpc24xx.h: Added AHB and EMC defines. Fixed Ethernet status sizes. * include/system-clocks.h, misc/system-clocks.c: Added micro seconds delay function that uses Timer 1. Changed PLL setup. * network/network.c, startup/bspreset.c, startup/linkcmds.lpc2478, startup/linkcmds.lpc2478_ncs, startup/linkcmds.lpc2478_ncs_ram: New files. * startup/bspstart.c: Added EMC initialization. Changes for ROM boot.
2008-12-11#include <bspopts.h>.Ralf Corsepius1-0/+2
2008-09-22lpc24xx: new BSPThomas Doerfler1-19/+7
2008-08-202008-08-20 Sebastian Huber <sebastian.huber@embedded-brains.de>Joel Sherrill1-1/+1
* include/mpc55xxevb.h, network/network.c, startup/sd-card-init.c, tests/tests.c: Added copyright information. Added missing prototypes. Fixed integer conversion warning. * startup/bspclean.c: Include bootcard.h.
2008-07-14updated gen83xx BSPThomas Doerfler1-0/+54
updated haleakala BSP added MPC55xx BSP