mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
55 lines
1.3 KiB
C
55 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2018 Eistec AB
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
|
* Public License v2.1. See the file LICENSE in the top level directory for more
|
|
* details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup tests
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Frac library static configuration helper
|
|
*
|
|
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <inttypes.h>
|
|
|
|
#include "frac.h"
|
|
|
|
int main(void)
|
|
{
|
|
puts("frac library static configuration generator");
|
|
while (1) {
|
|
int res = 0;
|
|
uint32_t num = 0;
|
|
uint32_t den = 0;
|
|
do {
|
|
puts("Enter fraction numerator (multiplier):");
|
|
res = scanf("%" SCNu32, &num);
|
|
} while (res == 0);
|
|
do {
|
|
puts("Enter fraction denominator (divider):");
|
|
res = scanf("%" SCNu32, &den);
|
|
} while (res == 0);
|
|
if (den == 0) {
|
|
continue;
|
|
}
|
|
frac_t frac;
|
|
frac_init(&frac, num, den);
|
|
|
|
printf("Static initialization of frac_t for (%" PRIu32 " / %" PRIu32 "):\n",
|
|
num, den);
|
|
puts("(Copy and paste into your code)\n");
|
|
printf("{ .frac = 0x%" PRIx32 ", .shift = %u }\n\n", frac.frac, (unsigned)frac.shift);
|
|
}
|
|
return 0;
|
|
}
|