fixed fs, updated README

This commit is contained in:
Andrew Gundersen 2022-04-28 10:30:26 -05:00
commit e0456a3f89
2 changed files with 5 additions and 3 deletions

View file

@ -26,4 +26,4 @@ As of writing, publishing will fail if there is already a package in the registr
I was unable to figure out how to publish to the private GitLab repo using npm (400 Bad Request). This may just be a bug in npm. For real, this threw me for a loop. I had to switch to Yarn for this reason (v1.22.17). Pulling with npm works fine though (for other repos).
### TODO
Sign on build
Sign on build

View file

@ -30,9 +30,11 @@ double setParameters( int type,
parameters->suggestedLatency = deviceInfo->defaultHighInputLatency;
printf(" Device: %s\n", deviceInfo->name);
printf(" SampleRate: %i\n", (int) deviceInfo->defaultSampleRate);
// printf(" SampleRate: %i\n", (int) deviceInfo->defaultSampleRate);
printf(" SampleRate: %i\n", 16000);
return deviceInfo->defaultSampleRate;
/* return deviceInfo->defaultSampleRate; */
return 16000;
}
ring_buffer_size_t rbs_min(ring_buffer_size_t a, ring_buffer_size_t b)