busvoodoo_global: minor, add version voltage documentation

This commit is contained in:
King Kévin 2020-03-09 13:50:45 +01:00
parent f28bf07f78
commit b6d567462c
1 changed files with 5 additions and 2 deletions

View File

@ -56,8 +56,11 @@ static volatile bool busvoodoo_global_led_red_timer = false;
/** if the LEDs are in a blinking pattern */
static volatile bool busvoodoo_global_led_blinking = false;
/** hardware version voltages, calculated from divider ratios, starting with version A */
static const float busvoodoo_version_voltages[] = {100.0 / (10.0 + 100.0) * 3.3, 0.0}; // version A start with revision 27
/** hardware version voltages */
static const float busvoodoo_version_voltages[] = {
100.0 / (10.0 + 100.0) * 3.3, // version A (revision 27): voltage divider 10k + 100k
0.0, // dongle: tied to ground
};
const char* busvoodoo_global_pinout_io[10] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
const char* busvoodoo_global_pinout_rscan[5] = {NULL, NULL, NULL, NULL, NULL};