examples/nxscope: add static to private functions

This commit is contained in:
raiden00pl 2024-05-02 09:11:39 +02:00 committed by Xiang Xiao
parent a09521ed55
commit e3110d3ea7

View File

@ -69,7 +69,7 @@ struct nxscope_thr_env_s
* Name: nxscope_cb_userid * Name: nxscope_cb_userid
****************************************************************************/ ****************************************************************************/
int nxscope_cb_userid(FAR void *priv, uint8_t id, FAR uint8_t *buff) static int nxscope_cb_userid(FAR void *priv, uint8_t id, FAR uint8_t *buff)
{ {
UNUSED(priv); UNUSED(priv);
@ -82,7 +82,7 @@ int nxscope_cb_userid(FAR void *priv, uint8_t id, FAR uint8_t *buff)
* Name: nxscope_cb_start * Name: nxscope_cb_start
****************************************************************************/ ****************************************************************************/
int nxscope_cb_start(FAR void *priv, bool start) static int nxscope_cb_start(FAR void *priv, bool start)
{ {
UNUSED(priv); UNUSED(priv);