Skip to content

Commit 8ea8b84

Browse files
committed
Create base voice class
Allows us to use a single base class in audio examples instead of a specific module Need to update name at some point as part of #9, it's not clear if UBX_CELL_VOICE or UBX_CELL_VOICE_BASE should be used based on the names alone
1 parent 7715397 commit 8ea8b84

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#include "sfe_ublox_cellular.h"
2+
#include "sfe_ublox_cellular_voice.h"
23
#include "sfe_sara_r5.h"
34
#include "sfe_lara_r6.h"

src/sfe_ublox_cellular_voice.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,9 @@ class UBX_CELL_VOICE
127127
}
128128
};
129129

130+
class UBX_CELL_VOICE_BASE : public UBX_CELL, public UBX_CELL_VOICE<UBX_CELL_VOICE_BASE>
131+
{
132+
133+
};
134+
130135
#endif

0 commit comments

Comments
 (0)