diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-06-29 09:30:06 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-06-29 09:30:06 +0000 |
commit | 86e6ed7f31d29fa3d2aea1f6c40aa4647fce2690 (patch) | |
tree | c88ca4fe635839b0ad5014674aa015d9c61ff30d /LUFA/Scheduler | |
parent | f1076ac4d6e56bff7fb6d2126746af1108211370 (diff) | |
download | lufa-86e6ed7f31d29fa3d2aea1f6c40aa4647fce2690.tar.gz lufa-86e6ed7f31d29fa3d2aea1f6c40aa4647fce2690.tar.bz2 lufa-86e6ed7f31d29fa3d2aea1f6c40aa4647fce2690.zip |
Dataflash_WaitWhileBusy() now always ensures that the dataflash is ready for the next command immediately after returning, no need to call Dataflash_ToggleSelectedChipCS() afterwards.
Added new DATAFLASH_CHIP_MASK() macro to the Dataflash driver, which returns the Dataflash select mask for the given chip index.
Updated MassStorage device block write routines to use ping-pong Dataflash buffering to increase throughput by around 30%.
Diffstat (limited to 'LUFA/Scheduler')
-rw-r--r-- | LUFA/Scheduler/Scheduler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Scheduler/Scheduler.h b/LUFA/Scheduler/Scheduler.h index 51679eba3..930c2a96a 100644 --- a/LUFA/Scheduler/Scheduler.h +++ b/LUFA/Scheduler/Scheduler.h @@ -259,7 +259,7 @@ Scheduler_TotalTasks = TotalTasks;
}
- static inline void Scheduler_GoSchedule(const uint8_t TotalTasks) ATTR_NO_RETURN ATTR_ALWAYS_INLINE;
+ static inline void Scheduler_GoSchedule(const uint8_t TotalTasks) ATTR_NO_RETURN ATTR_ALWAYS_INLINE ATTR_DEPRECATED;
static inline void Scheduler_GoSchedule(const uint8_t TotalTasks)
{
Scheduler_InitScheduler(TotalTasks);
|