mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-04 22:17:31 +00:00
PC Application: partial firmware update dialog
This commit is contained in:
parent
8c8749accd
commit
07ba714f1f
134 changed files with 13954 additions and 7 deletions
25
Software/PC_Application/Tools/eseries.h
Normal file
25
Software/PC_Application/Tools/eseries.h
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#ifndef ESERIES_H
|
||||
#define ESERIES_H
|
||||
|
||||
|
||||
class ESeries
|
||||
{
|
||||
public:
|
||||
enum class Series {
|
||||
Ideal = 0,
|
||||
E6 = 1,
|
||||
E12 = 2,
|
||||
E24 = 3,
|
||||
E48 = 4,
|
||||
E96 = 5,
|
||||
};
|
||||
enum class Type {
|
||||
BestMatch = 0,
|
||||
Lower = 1,
|
||||
Higher = 2,
|
||||
};
|
||||
|
||||
static double ToESeries(double value, Series s, Type t = Type::BestMatch);
|
||||
};
|
||||
|
||||
#endif // ESERIES_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue