Changeset 391f35c8 in rtems
- Timestamp:
- Aug 15, 2011, 8:14:31 AM (9 years ago)
- Branches:
- 4.10
- Children:
- 0b10f44
- Parents:
- ded0bfa
- Location:
- c/src/lib/libbsp/arm/nds
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/arm/nds/ChangeLog
rded0bfa r391f35c8 1 2011-08-15 Julien Delange <julien.delange@gmail.com> 2 3 * irq/irq.c: Removed printk() before the interrupt initialization 4 because it somehow destroys the interrupt context. 5 * make/custom/nds.cfg: Enable Thumb interwork. 6 * startup/bspstart.c: Set default exception handler. 7 1 8 2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org> 2 9 -
c/src/lib/libbsp/arm/nds/irq/irq.c
rded0bfa r391f35c8 35 35 BSP_rtems_irq_mngt_init (void) 36 36 { 37 printk ("[+] irq manager started\n");38 39 37 irqInit (); 40 38 -
c/src/lib/libbsp/arm/nds/make/custom/nds.cfg
rded0bfa r391f35c8 14 14 # 15 15 CPU_CFLAGS = -mstructure-size-boundary=8 -mcpu=$(RTEMS_CPU_MODEL) -mfpu=vfp -mfloat-abi=soft 16 #CPU_CFLAGS += -mthumb-interwork ## -D __THUMB_INTERWORK__ -mthumb16 CPU_CFLAGS += -mthumb-interwork ## -D __THUMB_INTERWORK__ -mthumb 17 17 18 18 # optimize flag: typically -O2 -
c/src/lib/libbsp/arm/nds/startup/bspstart.c
rded0bfa r391f35c8 16 16 #include <nds.h> 17 17 18 extern void defaultExceptionHandler (); 18 19 extern void BSP_rtems_irq_mngt_init (void); 19 20 /* … … 45 46 /* configure clock period */ 46 47 Configuration.microseconds_per_tick = 10000; /* us */ 48 49 defaultExceptionHandler (); 47 50 } 48 51
Note: See TracChangeset
for help on using the changeset viewer.