awtk/tools/object_gen/samples/gpio.json

241 lines
5.1 KiB
JSON
Raw Normal View History

2021-09-03 09:58:08 +08:00
{
"name":"object_gpio",
"date":"2021-09-02",
"team":"AWTK Develop Team",
"author":"Li XianJing <xianjimli@hotmail.com>",
"desc":"GPIO",
"copyright":"Guangzhou ZHIYUAN Electronics Co.,Ltd.",
"parent": "object",
"allowSubclass":true,
"annotation": ["scriptable"],
"includes":[],
2021-09-08 17:10:49 +08:00
"consts": [
{
"name":"gpio_pin_func",
"type":"enum",
"desc":"GPIO PIN的功能定义",
"annotation": ["scriptable"],
"values": [
{
"name":"INPUT",
"desc":"输入"
},
{
"name":"OUTPUT_INIT_HIGH",
"desc":"输出高电平"
},
{
"name":"OUTPUT_INIT_LOW",
"desc":"引脚输出低电平"
}
]
},
{
"name":"gpio_pin_mode",
"type":"enum",
"desc":"GPIO PIN的模式定义",
"annotation": ["scriptable"],
"values": [
{
"name":"PULLUP",
"desc":"上拉模式"
},
{
"name":"PULLDOWN",
"desc":"下拉模式"
},
{
"name":"OPEN_DRAIN",
"desc":"开漏模式"
},
{
"name":"PUSH_PULL",
"desc":"推挽模式"
}
]
},
{
"name":"gpio_pin_trigger_mode",
"type":"enum",
"desc":"GPIO PIN的触发模式定义",
"annotation": ["scriptable"],
"values": [
{
"name":"OFF",
"desc":"关闭触发"
},
{
"name":"HIGH",
"desc":"高电平触发"
},
{
"name":"LOW",
"desc":"低电平触发"
},
{
"name":"RISE",
"desc":"上升沿触发"
},
{
"name":"FALL",
"desc":"下降沿触发"
},
{
"name":"BOTH_EDGES",
"desc":"双边沿触发"
}
]
}
],
2021-09-03 09:58:08 +08:00
"props": [
],
"funcs": [
{
2021-09-08 17:10:49 +08:00
"name":"config",
"desc":"配置",
2021-09-03 09:58:08 +08:00
"annotation": ["scriptable"],
"return": {
"type":"ret_t",
"defvalue":"RET_BAD_PARAMS",
2021-09-08 17:10:49 +08:00
"desc":"返回RET_OK表示成功否则表示失败"
2021-09-03 09:58:08 +08:00
},
"virtual": false,
"args": [
{
2021-09-08 17:10:49 +08:00
"name":"pin",
"desc":"引脚号",
2021-09-03 09:58:08 +08:00
"type":"int32_t"
},
{
2021-09-08 17:10:49 +08:00
"name":"func",
"desc":"功能",
"type":"uint16_t"
},
{
"name":"mode",
"desc":"模式",
"type":"uint16_t"
}
]
},
{
"name":"get",
"desc":"获取引脚输出状态",
"annotation": ["scriptable"],
"return": {
"type":"uint32_t",
"defvalue":"0",
"desc":"返回值"
},
"virtual": true,
"args": [
{
"name":"pin",
"desc":"引脚号",
"type":"int32_t"
2021-09-03 09:58:08 +08:00
}
]
},
{
2021-09-08 17:10:49 +08:00
"name":"set",
"desc":"设置引脚输出状态",
2021-09-03 09:58:08 +08:00
"annotation": ["scriptable"],
"return": {
"type":"ret_t",
"defvalue":"RET_BAD_PARAMS",
2021-09-08 17:10:49 +08:00
"desc":"返回RET_OK表示成功否则表示失败"
2021-09-03 09:58:08 +08:00
},
"virtual": true,
"args": [
{
2021-09-08 17:10:49 +08:00
"name":"pin",
"desc":"引脚号",
2021-09-03 09:58:08 +08:00
"type":"int32_t"
},
{
"name":"value",
"desc":"值",
"type":"uint32_t"
}
]
},
{
2021-09-08 17:10:49 +08:00
"name":"toggle",
"desc":"翻转GPIO引脚输出状态",
"annotation": ["scriptable"],
"return": {
"type":"ret_t",
"defvalue":"RET_BAD_PARAMS",
"desc":"返回RET_OK表示成功否则表示失败"
},
"virtual": true,
"args": [
{
"name":"pin",
"desc":"引脚号",
"type":"int32_t"
}
]
},
{
"name":"trigger_cfg",
"desc":"配置GPIO引脚触发功能",
2021-09-03 09:58:08 +08:00
"annotation": ["scriptable"],
"return": {
"type":"ret_t",
"defvalue":"RET_BAD_PARAMS",
2021-09-08 17:10:49 +08:00
"desc":"返回RET_OK表示成功否则表示失败"
2021-09-03 09:58:08 +08:00
},
"virtual": true,
"args": [
{
2021-09-08 17:10:49 +08:00
"name":"pin",
"desc":"引脚号",
2021-09-03 09:58:08 +08:00
"type":"int32_t"
},
{
2021-09-08 17:10:49 +08:00
"name":"mode",
"desc":"触发模式",
"type":"uint32_t"
2021-09-03 09:58:08 +08:00
}
]
},
{
2021-09-08 17:10:49 +08:00
"name":"trigger_on",
"desc":"使能引脚触发中断",
2021-09-03 09:58:08 +08:00
"annotation": ["scriptable"],
"return": {
2021-09-08 17:10:49 +08:00
"type":"ret_t",
"defvalue":"RET_BAD_PARAMS",
"desc":"返回RET_OK表示成功否则表示失败"
2021-09-03 09:58:08 +08:00
},
"virtual": true,
"args": [
2021-09-08 17:10:49 +08:00
{
"name":"pin",
"desc":"引脚号",
"type":"int32_t"
}
2021-09-03 09:58:08 +08:00
]
},
{
2021-09-08 17:10:49 +08:00
"name":"trigger_off",
"desc":"禁止引脚触发中断",
2021-09-03 09:58:08 +08:00
"annotation": ["scriptable"],
"return": {
2021-09-08 17:10:49 +08:00
"type":"ret_t",
"defvalue":"RET_BAD_PARAMS",
"desc":"返回RET_OK表示成功否则表示失败"
2021-09-03 09:58:08 +08:00
},
"virtual": true,
"args": [
2021-09-08 17:10:49 +08:00
{
"name":"pin",
"desc":"引脚号",
"type":"int32_t"
}
2021-09-03 09:58:08 +08:00
]
}
]
}