mirror of
https://github.com/danog/system-bus-radio.git
synced 2024-12-02 23:37:44 +01:00
fix whitespace
This commit is contained in:
parent
b09a87a9da
commit
95a64bbe76
6
main.c
6
main.c
@ -15,7 +15,7 @@ mach_port_t clock_port;
|
|||||||
mach_timespec_t remain;
|
mach_timespec_t remain;
|
||||||
|
|
||||||
static inline void square_am_signal(float time, float frequency) {
|
static inline void square_am_signal(float time, float frequency) {
|
||||||
printf("Playing / %0.3f seconds / %4.0f Hz\n", time, frequency);
|
printf("Playing / %0.3f seconds / %4.0f Hzn", time, frequency);
|
||||||
uint64_t period = NSEC_PER_SEC / frequency;
|
uint64_t period = NSEC_PER_SEC / frequency;
|
||||||
|
|
||||||
uint64_t start = mach_absolute_time();
|
uint64_t start = mach_absolute_time();
|
||||||
@ -38,11 +38,11 @@ int main()
|
|||||||
mach_timebase_info_data_t theTimeBaseInfo;
|
mach_timebase_info_data_t theTimeBaseInfo;
|
||||||
mach_timebase_info(&theTimeBaseInfo);
|
mach_timebase_info(&theTimeBaseInfo);
|
||||||
puts("TESTING TIME BASE: the following should be 1 / 1");
|
puts("TESTING TIME BASE: the following should be 1 / 1");
|
||||||
printf(" Mach base: %u / %u nanoseconds\n\n", theTimeBaseInfo.numer, theTimeBaseInfo.denom);
|
printf(" Mach base: %u / %u nanosecondsnn", theTimeBaseInfo.numer, theTimeBaseInfo.denom);
|
||||||
|
|
||||||
uint64_t start = mach_absolute_time();
|
uint64_t start = mach_absolute_time();
|
||||||
uint64_t end = mach_absolute_time();
|
uint64_t end = mach_absolute_time();
|
||||||
printf("TESTING TIME TO EXECUTE mach_absolute_time()\n Result: %lld nanoseconds\n\n", end - start);
|
printf("TESTING TIME TO EXECUTE mach_absolute_time()n Result: %lld nanosecondsnn", end - start);
|
||||||
|
|
||||||
reg_zero = _mm_set_epi32(0, 0, 0, 0);
|
reg_zero = _mm_set_epi32(0, 0, 0, 0);
|
||||||
reg_one = _mm_set_epi32(-1, -1, -1, -1);
|
reg_one = _mm_set_epi32(-1, -1, -1, -1);
|
||||||
|
Loading…
Reference in New Issue
Block a user