summaryrefslogtreecommitdiffstats
path: root/doc/bsp_howto (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-01-11Remove texinfo format documentation. Replaced by Sphinx formatted documentation.Joel Sherrill28-30545/+0
closes #2812.
2016-01-19score: Fix simple timecounter supportSebastian Huber1-1/+12
Update #2502.
2015-12-14doc: grammar fix as part of GCI 2016Ethan Ordentlich1-1/+1
2015-12-10bsps: Delete superfluous bsp_pretasking_hook()Sebastian Huber2-21/+4
Use the bsp_predriver_hook() instead. Update #2408.
2015-12-10bsps: Call bsp_work_area_initialize() earlySebastian Huber1-22/+27
Call bsp_work_area_initialize() before bsp_start(). This allows bsp_start() to use malloc() etc. which is beneficial for systems with a plug-and-play hardware enumeration. Update #2408.
2015-12-07doc: Remove reference to debug maskSebastian Huber1-3/+0
Update #2477.
2015-07-17Update dateJoel Sherrill1-2/+2
2015-05-20timecounter: Port to RTEMSAlexander Krutwig1-52/+250
New test sptests/timecounter01. Update #2271.
2015-05-14Remove obsolete rtems_clock_major/minorSebastian Huber1-17/+0
These global variables are obsolete since 65f71f8472fa904ca48b816301ed0810def47001.
2014-10-07termios: Partially hide rtems_termios_ttySebastian Huber1-17/+21
Move interrupt lock to device context and expose only this structure to the read, write and set attributes device handler. This makes these device handler independent of the general Termios infrastructure suitable for direct use in printk() support.
2014-10-07termios: Separate flow control from normal handlerSebastian Huber1-0/+1
2014-09-16Use correct prototype of benchmark_timer_read()Joel Sherrill1-1/+1
This change starts with removing the effectively empty file timerdrv.h. The prototypes for benchmark_timer_XXX() were in btimer.h which was not universally used. Thus every use of timerdrv.h had to be changed to btimer.h. Then the prototypes for benchmark_timer_read() had to be adjusted to return benchmark_timer_t rather than int or uint32_t. I took this opportunity to also correct the file headers to separate the copyright from the file description comments which is needed to ensure the copyright isn't propagated into Doxygen output.
2014-07-21doc: Update console driver documentationSebastian Huber1-398/+344
2014-03-14Add documentation for profilingSebastian Huber1-0/+11
2013-09-17bsp_howto/support.t: Add PIC Interrupt Model API InformationVipul Nayyar1-0/+70
2013-06-12termios: Notify driver about inactive transmitSebastian Huber1-0/+6
Returning this state in the return value leads to race conditions on SMP. The inactive state notification must be inside the critical section.
2013-02-26doc master include files: Do not include top node on printed outputJoel Sherrill1-0/+2
In PDF, DVI, and PostScript files, the contents of the @top node were being printed. These are intended only for info and html output formats.
2013-02-26doc: Update version.texi and stamp-vti filesJoel Sherrill2-4/+4
See http://www.rtems.org/pipermail/rtems-devel/2013-February/002466.html for instructions on how to do this.
2013-02-26doc: Update to build info format with texinfo 4.13 and 5.0Joel Sherrill1-21/+21
Texinfo 5.0 is a complete reimplementation and has stricter interpretations of the texinfo language.
2013-02-13make: Remove -qrtems_debug flag usageSebastian Huber1-2/+1
2012-12-07score: rtems_initialize_start_multitasking()Sebastian Huber2-34/+32
Do not return from rtems_initialize_start_multitasking() and call rtems_fatal() instead with a fatal source of RTEMS_FATAL_SOURCE_EXIT and a fatal code with the exit status. Remove all bsp_cleanup() functions. The boot_card() is now a no return function.
2012-10-25score: Work area initialization API changeSebastian Huber1-40/+18
The work areas (RTEMS work space and C program heap) will be initialized now in a separate step and are no longer part of rtems_initialize_data_structures(). Initialization is performed with tables of Heap_Area entries. This allows usage of scattered memory areas present on various small scale micro-controllers. The sbrk() support API changes also. The bsp_sbrk_init() must now deal with a minimum size for the first memory chunk to take the configured work space size into account.
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill20-60/+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-05-07Revert: Remove CVS IdsJoel Sherrill1-0/+3
See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
2012-05-04Remove CVS-Ids.Ralf Corsépius1-3/+0
2012-02-01Remove all .cvsignore files.Joel Sherrill1-42/+0
2011-12-062011-12-06 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2-13/+3
PR 1793/doc * .cvsignore, Makefile.am, README, configure.ac, index.html.in, main.am, project.am, ada_user/.cvsignore, ada_user/ada_user.texi, ada_user/example.texi, bsp_howto/.cvsignore, bsp_howto/bsp_howto.texi, cpu_supplement/.cvsignore, cpu_supplement/cpu_supplement.texi, cpu_supplement/preface.texi, develenv/.cvsignore, develenv/develenv.texi, develenv/intro.texi, filesystem/.cvsignore, filesystem/filesystem.texi, filesystem/preface.texi, networking/.cvsignore, networking/networking.texi, networking/preface.texi, porting/.cvsignore, porting/porting.texi, porting/preface.texi, posix1003.1/.cvsignore, posix1003.1/posix1003_1.texi, posix_users/.cvsignore, posix_users/posix_users.texi, posix_users/preface.texi, shell/.cvsignore, shell/preface.texi, shell/shell.texi, started/.cvsignore, started/started.texi, user/.cvsignore, user/c_user.texi, user/dirstat.texi, user/example.texi, user/glossary.texi, user/preface.texi: Convert from texi2www to texi2html. * texi2html_init.in: New file. * rtems_footer.html.in, rtems_header.html.in: Removed.
2011-12-052011-12-05 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill1-2/+2
* ada_user/version.texi, bsp_howto/version.texi, cpu_supplement/version.texi, develenv/version.texi, filesystem/version.texi, networking/version.texi, porting/version.texi, posix1003.1/version.texi, posix_users/version.texi, shell/version.texi, started/version.texi, user/version.texi: Update to match when files in directory where last touched.
2011-07-132011-07-13 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2-9/+14
PR 1824/cpukit * bsp_howto/init.t, bsp_howto/support.t, user/init.t: Return exit/shutdown status back to boot_card().
2011-05-232011-05-23 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill1-1/+1
* bsp_howto/support.t: Update copyright.
2011-05-232011-05-23 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill1-8/+46
* bsp_howto/support.t: Add section describing configuration macros which may be defined at the BSP level to alter defaults in rtems/confdefs.h.
2010-06-11New.Ralf Corsepius2-0/+8
2010-06-11Remove EDITION (Unused)Ralf Corsepius2-3/+0
2009-12-16adaption of calling convention to console my_driver_write functionThomas Doerfler1-4/+14
2009-10-142009-10-14 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-1/+1
* bsp_howto/console.t: Capitalization.
2009-10-142009-10-14 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-3/+0
* HELP.html, bsp_howto/support.t, relnotes/status.texi, started_ada/buildada.t: Remove references to posix/Unix port.
2009-08-232009-08-22 Roxana Leontie <roxana.leontie@gmail.com>Joel Sherrill1-43/+7
* bsp_howto/framebuffer.t: documented the improvements made to read/write
2009-08-212009-08-21 Roxana Leontie <roxana.leontie@gmail.com>Joel Sherrill1-49/+140
* bsp_howto/framebuffer.t: Updated the frame buffer documentation.
2009-08-032009-08-03 Roxana Leontie <roxana.leontie@gmail.com>Joel Sherrill1-6/+181
* bsp_howto/framebuffer.t: added documentation
2009-07-282009-07-28 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill4-2/+34
* bsp_howto/.cvsignore, bsp_howto/Makefile.am, bsp_howto/bsp_howto.texi: Add Frame Buffer Device Driver shell. * bsp_howto/framebuffer.t: New file. * user/conf.t: Add CONFIGURE_APPLICATION_NEEDS_FRAME_BUFFER_DRIVER.
2009-01-292009-01-29 Sebastian Huber <sebastian.huber@embedded-brains.de>Joel Sherrill1-1/+9
* bsp_howto/console.t: Clarify interrupt transmit process. * user/concepts.t: Typo.
2008-12-122008-12-12 Sebastian Huber <sebastian.huber@embedded-brains.de>Joel Sherrill1-5/+1
* bsp_howto/console.t: Remove size constraints on image. Fix a sentence.
2008-12-112008-12-11 Sebastian Huber <sebastian.huber@embedded-brains.de>Joel Sherrill4-175/+26050
Joel Sherrrill <joel.sherrill@oarcorp.com> * bsp_howto/Makefile.am, bsp_howto/console.t: Sebastian improved documentation for termios device drivers. * bsp_howto/TERMIOSFlow.eps, bsp_howto/TERMIOSFlow.png: New files. Joel added Termios Flow figure from RTEMS Open Class material.
2008-09-302008-09-30 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-1/+1
* bsp_howto/timer.t: Eliminate uses of old benchmark timer names.
2008-09-232008-09-23 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill1-0/+0
* bsp_howto/BSPInitFlowchart-49.png: Update figure.
2008-09-092008-09-09 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-0/+0
* bsp_howto/Developer-User-Timeline.png: Correct figure.
2008-09-09Convert to "bool".Ralf Corsepius2-3/+3
2008-09-082008-09-08 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-25/+10
* bsp_howto/timer.t: Update documentation to reflect Timer Driver renaming.
2008-09-052008-09-05 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill1-25/+3
* bsp_howto/clock.t: The Shared Memory Driver no longer requires the special IOCTL in Clock_control. This was a hack which has existed since before the Classic API Timer Manager was implemented. All implementations of and references to Clock_control were removed.
2008-08-222008-08-22 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-3/+1
* bsp_howto/init.t: Eliminate empty section.