Today try install a new IDE for embedded device on Microsoft Visual Studio Code on Windows 10 Pro
it is call PlatformIO IDE. It supports quite a number of embedded device like MSP430, STM32 and RISC-V
I use Anaconda as my bridge to python and it has a problem during the extension installationof PlatformIO IDE, with the error message saying that
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Collecting pymsgbox
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")':
I eventually find the solution from
https://github.com/ContinuumIO/anaconda-issues/issues/10576
which is to copy these files from Anaconda ./Library/bin to ./DLL/ :
libcrypto-1_1-x64.*
libssl-1_1-x64.*
This is step to install PlatformIO IDE. Go to extension and search for PlatformIO IDE, click install and it will install automatically. Upon successful installation, restart VSCode
This is screenshot of PlatformIO IDE
Then we can look for some embedded examples
i choose kendryte 210
after installation, open the Kendryte
Top Comments