change vban max packet size, add a rds2 device to fm95 and others

This commit is contained in:
2025-05-30 17:28:19 +02:00
parent 14630e5c7f
commit 7213c3b13d
7 changed files with 85 additions and 65 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ void init_oscillator(Oscillator *osc, float frequency, float sample_rate) {
osc->sample_rate = sample_rate;
}
void change_oscillator_frequency(Oscillator *osc, float frequency) {
inline void change_oscillator_frequency(Oscillator *osc, float frequency) {
osc->phase_increment = (M_2PI * frequency) / osc->sample_rate;
}