You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
455 B
24 lines
455 B
7 years ago
|
/*
|
||
|
* LibBasicFunctions.h
|
||
|
*
|
||
|
* Created on: Dec 23, 2017
|
||
|
* Author: slascos
|
||
|
*/
|
||
|
|
||
|
#ifndef SRC_LIBBASICFUNCTIONS_H_
|
||
|
#define SRC_LIBBASICFUNCTIONS_H_
|
||
|
|
||
|
#include "Audio.h"
|
||
|
#include "LibExtMemoryManagement.h"
|
||
|
#include "BASpiMemory.h"
|
||
|
|
||
|
namespace BAGuitar {
|
||
|
|
||
|
void updateAudioMemorySlot(BAGuitar::BASpiMemory *mem, MemSlot slot, audio_block_t *block);
|
||
|
void zeroMemorySlot(BAGuitar::BASpiMemory *mem, MemSlot slot);
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif /* SRC_LIBBASICFUNCTIONS_H_ */
|