Changeset 545 for soft/giet_vm/giet_drivers/sdc_driver.c
- Timestamp:
- Apr 4, 2015, 11:32:20 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_drivers/sdc_driver.c
r529 r545 14 14 #define SDCARD_RESET_ITER_MAX 4 15 15 16 /////////////////////////////////////////////////////////////////////////////// 17 // Global variables 18 /////////////////////////////////////////////////////////////////////////////// 19 20 __attribute__((section(".kdata"))) 16 21 static struct sdcard_dev sdcard; 22 23 __attribute__((section(".kdata"))) 17 24 static struct spi_dev* spi; 18 25 … … 451 458 } // _end sdc_access() 452 459 460 /////////////////////////////////////////////////////////////////////////////// 461 // This ISR handles the IRQ generated by a SDC controler 462 /////////////////////////////////////////////////////////////////////////////// 463 void _sdc_isr( unsigned int irq_type, 464 unsigned int irq_id, 465 unsigned int channel ) 466 { 467 _puts("\n[GIET ERROR] _sdc_isr() not implemented\n"); 468 _exit(); 469 } 470 453 471 // Local Variables: 454 472 // tab-width: 4
Note: See TracChangeset
for help on using the changeset viewer.