-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add iffifo interrupt into the PLIC system - remove FULL and AVAILABLE interrupts as they can be implemented with REACHED interrupts
- Loading branch information
Pierre Guillod
committed
Oct 28, 2023
1 parent
192f13e
commit f15c86a
Showing
9 changed files
with
111 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
******************* | ||
******************************* C SOURCE FILE ******************************* | ||
** ******************* ** | ||
** ** | ||
** project : x-heep ** | ||
** filename : i2s.h ** | ||
** date : 28/10/2023 ** | ||
** ** | ||
***************************************************************************** | ||
** ** | ||
** Copyright (c) EPFL contributors. ** | ||
** All rights reserved. ** | ||
** ** | ||
***************************************************************************** | ||
*/ | ||
|
||
/***************************************************************************/ | ||
/***************************************************************************/ | ||
|
||
/** | ||
* @file iffifo.h | ||
* @date 28/10/2023 | ||
* @author Pierre Guillod | ||
* @brief HAL of the IFFIFO peripheral | ||
* | ||
*/ | ||
|
||
#ifndef _DRIVERS_IFFIFO_H_ | ||
#define _DRIVERS_IFFIFO_H_ | ||
|
||
/****************************************************************************/ | ||
/** **/ | ||
/* MODULES USED */ | ||
/** **/ | ||
/****************************************************************************/ | ||
|
||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
__attribute__((weak)) void handler_irq_iffifo(uint32_t id); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif // _DRIVERS_IFFIFO_H_ | ||
|
||
/****************************************************************************/ | ||
/** **/ | ||
/* EOF */ | ||
/** **/ | ||
/****************************************************************************/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.