From e628b243c2bb15d1a831ab107e7cd27ef8a0d302 Mon Sep 17 00:00:00 2001 From: Eric Callahan Date: Wed, 16 Nov 2022 16:52:20 -0500 Subject: [PATCH] docs: add canbus to /machine/system_info result Signed-off-by: Eric Callahan --- docs/web_api.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/web_api.md b/docs/web_api.md index b83fdbe..d021577 100644 --- a/docs/web_api.md +++ b/docs/web_api.md @@ -1142,6 +1142,18 @@ Returns: Information about the host system in the following format: } ] } + }, + "canbus": { + "can0": { + "tx_queue_len": 128, + "bitrate": 500000, + "driver": "mcp251x" + }, + "can1": { + "tx_queue_len": 128, + "bitrate": 500000, + "driver": "gs_usb" + } } } }