Fixed SDRplay AGC and added hardware donators to the credits

This commit is contained in:
AlexandreRouma
2021-11-23 17:05:40 +01:00
parent 28d056b776
commit f3e987fb7e
4 changed files with 185 additions and 26 deletions

View File

@@ -35,6 +35,17 @@ namespace sdrpp_credits {
"Portable File Dialogs"
};
const char* hardwareDonators[] = {
"Airspy",
"Analog Devices",
"Howard Su",
"MyriadRF",
"Nuand",
"RFspace",
"RTL-SDRblog",
"SDRplay"
};
const char* patrons[] = {
"Bob Logan",
"Christian Häusler",
@@ -58,5 +69,6 @@ namespace sdrpp_credits {
const int contributorCount = sizeof(contributors) / sizeof(char*);
const int libraryCount = sizeof(libraries) / sizeof(char*);
const int hardwareDonatorCount = sizeof(hardwareDonators) / sizeof(char*);
const int patronCount = sizeof(patrons) / sizeof(char*);
}