xypad theremin for LPC1768

Dependencies:   MODDMA mbed

envlp.h

Committer:
exopiped
Date:
2016-03-14
Revision:
2:c5eeaf1c8e69
Parent:
0:8ee38453bad9

File content as of revision 2:c5eeaf1c8e69:

#ifndef ENVLP_H
#define ENVLP_H
/*
 * envlp.h -- Functions which help note.cpp produce 
 * an ADSR (Attack,Decay,Sustain,Release) envelope 
 */
#define ENVLP_MAX (0x1FF)

void envlp_init(void);
void envlp_update(void);
int envlp_get_attack_bufs(void);
int envlp_get_decay_bufs(void);
int envlp_get_release_delta(void);

#endif