mirror of
https://github.com/wavemotion-dave/NINTV-DS.git
synced 2025-06-18 13:55:33 -04:00
17 lines
271 B
C++
17 lines
271 B
C++
|
|
#include "Intellivoice.h"
|
|
|
|
IntellivoiceState Intellivoice::getState()
|
|
{
|
|
IntellivoiceState state = {0};
|
|
|
|
state.sp0256State = sp0256.getState();
|
|
|
|
return state;
|
|
}
|
|
|
|
void Intellivoice::setState(IntellivoiceState state)
|
|
{
|
|
sp0256.setState(state.sp0256State);
|
|
}
|