Changeset 7b46d7a in rtems
- Timestamp:
- Aug 15, 2011, 8:12:49 AM (9 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 1f3585d1
- Parents:
- 3848df4d
- Location:
- c/src/lib/libbsp/arm/nds
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/arm/nds/ChangeLog
r3848df4d r7b46d7a 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-06-19 Ralf Corsépius <ralf.corsepius@rtems.org> 2 9 -
c/src/lib/libbsp/arm/nds/irq/irq.c
r3848df4d r7b46d7a 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
r3848df4d r7b46d7a 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
r3848df4d r7b46d7a 17 17 #include <nds.h> 18 18 19 extern void defaultExceptionHandler (); 19 20 extern void BSP_rtems_irq_mngt_init (void); 20 21 /* … … 46 47 /* configure clock period */ 47 48 Configuration.microseconds_per_tick = 10000; /* us */ 49 50 defaultExceptionHandler (); 48 51 } 49 52
Note: See TracChangeset
for help on using the changeset viewer.