diff options
author | Takamichi Horikawa <takamichiho@gmail.com> | 2017-08-13 23:08:54 +0900 |
---|---|---|
committer | Takamichi Horikawa <takamichiho@gmail.com> | 2017-08-13 23:08:54 +0900 |
commit | 5a8af1f670709d6cd28ad5edda223d9ecbc03bc3 (patch) | |
tree | d8819443b937c49b5a4feb12ad54178d6f79a584 /fmdriver/ppz8.h | |
parent | 11a5698d68461b91a681f37d66fad5e206969674 (diff) |
added levelmeter
Diffstat (limited to 'fmdriver/ppz8.h')
-rw-r--r-- | fmdriver/ppz8.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fmdriver/ppz8.h b/fmdriver/ppz8.h index f4ef4cb..35c67dc 100644 --- a/fmdriver/ppz8.h +++ b/fmdriver/ppz8.h @@ -3,6 +3,8 @@ #include <stdint.h> #include <stdbool.h> +#include <stdatomic.h> +#include "leveldata/leveldata.h" #ifdef __cplusplus extern "C" { @@ -35,6 +37,7 @@ struct ppz8_channel { uint8_t pan; uint8_t voice; bool playing; + struct leveldata leveldata; }; struct ppz8 { |