mbed-os/tools/test/config/range_limits/lib1/mbed_lib.json

22 lines
636 B
JSON

{
"name": "lib1",
"config": {
"config1": {
"help": "The default value should pass as it is in the list of accepted values",
"value": 5,
"accepted_values": "0, 5, 10"
},
"config2": {
"help": "The default value should pass as it is in the rage of accepted values",
"value": 7,
"value_min": 0,
"value_max": 10
},
"config3": {
"help": "The default value should pass as it is in the rage of accepted values",
"value": "foo",
"accepted_values": "foo, bar"
}
}
}