Hi I recently update my library.json because it was taking all my examples as one. At the web page it’s alright, showing the 3 examples, but in VSCode throws me this error:
Error occurred while glob [{"name":"toUpper and toLower","base":"examples/","files":["example1.c"]},{"name":"Long data lenght","base":"examples/","files":["example2.c"]},{"name":"Sending raw data","base":"examples/","files":["example3.c"]}]
Server error: {"type":"TypeError","args":["join() argument must be str, bytes, or os.PathLike object, not 'dict'"],"message":"join() argument must be str, bytes, or os.PathLike object, not 'dict'"}
How can i fix this?
My library.json:
{
"name": "Serial-libOpenCM3",
"keywords": "Serial, usart, communication, bluepill, stm32",
"description": "Serial higher level API for manage the USART with libOpenCM3",
"authors":
{
"name": "Matías S. Ávalos",
"email": "msavalos@gmail.com",
"url": "http://electronlinux.wordpress.com"
},
"repository":
{
"type": "git",
"url": "https://gitlab.com/tute-avalos/serial-api-libopencm3"
},
"export": {
"exclude": [
"Makefile",
"src/Makefile",
"rules.mk",
"libopencm3",
".gitmodules",
"stm32f103-bluepill.cfg"
]
},
"examples": [
{
"name": "toUpper and toLower",
"base": "examples/",
"files": ["example1.c"]
},
{
"name": "Long data lenght",
"base": "examples/",
"files":["example2.c"]
},
{
"name": "Sending raw data",
"base": "examples/",
"files":["example3.c"]
}
],
"license": "LGPL-3.0-or-later",
"version": "0.4.5",
"frameworks": "libopencm3",
"platforms": "ststm32"
}
Sorry if this is a dumb question!