Note
We have a big database with Frequently Asked Questions in our Community Forums. Please have a look at it.
Contents
Please refer to :ref:`what_is_pio`
Please refer to :ref:`projectconf_pio_workspace_dir`.
Please refer to :ref:`projectconf_pio_build_dir`.
Please refer to :ref:`cmd_system_completion`.
:ref:`piocore` is written in Python that is installed by default on the all popular OS except Windows.
Please navigate to official website and Download the latest Python and install it. Please READ NOTES BELOW.
Some :ref:`ide` doesn't support Arduino files (*.ino
and .pde
) because
they are not valid C/C++ based source files:
- Missing includes such as
#include <Arduino.h>
- Function declarations are omitted.
In this case, code completion and code linting do not work properly or are disabled. To avoid this issue you can manually convert your INO files to CPP.
For example, we have the next Demo.ino
file:
void setup () {
someFunction(13);
}
void loop() {
delay(1000);
}
void someFunction(int num) {
}
Let's convert it to Demo.cpp
:
- Add
#include <Arduino.h>
at the top of the source file - Declare each custom function (excluding built-in, such as
setup
andloop
) before it will be called.
The final Demo.cpp
:
#include <Arduino.h>
void someFunction(int num);
void setup () {
someFunction(13);
}
void loop() {
delay(1000);
}
void someFunction(int num) {
}
Finish.
PlatformIO calculates firmware/program memory usage based on the next segments:
.text : | The code segment, also known as a text segment or simply as text, is where a portion of an object file or the corresponding section of the program's virtual address space that contains executable instructions is stored and is generally read-only and fixed size. |
---|---|
.data : | The .data segment contains any global or static variables which have a
pre-defined value and can be modified. The values for these variables are
initially stored within the read-only memory (typically within int val = 3;
char string[] = "Hello World"; |
.bss : | Uninitialized data is usually adjacent to the data segment. The BSS
segment contains all global variables and static variables that are
initialized to zero or do not have explicit initialization in the source code.
For instance, a variable defined as |
The rough calculation could be done as:
- PROGRAM (Flash) =
.text
+.data
- DATA (RAM) =
.bss
+.data
If you need to print all memory sections and addresses, please use :option:`pio run --verbose` command.
Recommended for reading:
PlatformIO Core provides CLI version (:ref:`cmd_device_monitor`) of Serial Monitor. If you need advanced instrument with a rich UI, we recommend free and multi-platform CoolTerm serial port terminal application.
Warning
Please note that you need to manually disconnect (close serial port connection) in CoolTerm before doing uploading in PlatformIO. PlatformIO can not disconnect/connect to a target device automatically when CoolTerm is used.
Multiple standalone :ref:`piocore` in a system could lead to the different issues. We highly recommend to keep one instance of PlatformIO Core or use built-in PlatformIO Core in :ref:`pioide`:
- :ref:`ide_atom` -
Menu PlatformIO: Settings > PlatformIO IDE > Use built-in PlatformIO Core
- :ref:`ide_vscode` - :ref:`ide_vscode_settings` > Set
platformio-ide.useBuiltinPIOCore
totrue
.
Finally, if you have a standalone :ref:`piocore` in a system, please open system Terminal (not PlatformIO IDE Terminal) and uninstall obsolete PlatformIO Core:
pip uninstall platformio
# if you used macOS "brew"
brew uninstall platformio
If you need to have :ref:`piocore` globally in a system, please :ref:`piocore_install_shell_commands`.
If you use :ref:`pioide`, please check in PlatformIO IDE Settings that "Use built-in PlatformIO Core" is enabled.
If you modify system environment variable PATH
in your Bash/Fish/ZSH
profile, please do not override global PATH
. This line
export PATH="/my/custom/path"
is incorrect. Use export PATH="/my/custom/path":$PATH
instead.
Linux users have to install udev rules for PlatformIO supported boards/devices. The latest version of rules may be found at https://raw.githubusercontent.com/platformio/platformio-core/master/scripts/99-platformio-udev.rules
Note
Please check that your board's PID and VID are listed in the rules. You can list connected devices and their PID/VID using :ref:`cmd_device_list` command.
This file must be placed at /etc/udev/rules.d/99-platformio-udev.rules
(preferred location) or /lib/udev/rules.d/99-platformio-udev.rules
(required on some broken systems).
Please open system Terminal and type
# Recommended
curl -fsSL https://raw.githubusercontent.com/platformio/platformio-core/master/scripts/99-platformio-udev.rules | sudo tee /etc/udev/rules.d/99-platformio-udev.rules
# OR, manually download and copy this file to destination folder
sudo cp 99-platformio-udev.rules /etc/udev/rules.d/99-platformio-udev.rules
Restart "udev" management tool:
sudo service udev restart
# or
sudo udevadm control --reload-rules
sudo udevadm trigger
Ubuntu/Debian users may need to add own “username” to the “dialout” group if they are not “root”, doing this issuing
sudo usermod -a -G dialout $USER
sudo usermod -a -G plugdev $USER
Similarly, Arch users may need to add their user to the “uucp” group
sudo usermod -a -G uucp $USER
sudo usermod -a -G lock $USER
Note
You will need to log out and log back in again (or reboot) for the user group changes to take effect.
After this file is installed, physically unplug and reconnect your board.
Windows users can experience this issue when multiple Python interpreters are installed in a system and conflict each other. The easy way to fix this problem is uninstalling all Python interpreters using Windows Programs Manager and installing them manually again.
- "Windows > Start Menu > Settings > System > Apps & Features", select Python interpreters and uninstall them.
- Install the latest Python interpreter, see :ref:`faq_install_python` guide
- Remove
C:\Users\YourUserName\.platformio
andC:\.platformio
folders if exist (do not forget to replace "YourUserName" with the real user name) - Restart :ref:`pioide`.
PlatformIO installs all packages to ":ref:`projectconf_pio_core_dir`/packages" directory. You MUST HAVE write access to this folder. Please note that PlatformIO does not require "sudo"/administrative privileges.
A quick solution is to remove ":ref:`projectconf_pio_core_dir`/packages" folder and repeat installation/building/uploading again.
Some antivirus tools forbid programs to create files in the background. PlatformIO Package Manager does all work in the background: downloads package, unpacks archive in temporary folder and moves final files to ":ref:`projectconf_pio_core_dir`/packages" folder.
Antivirus tool can block PlatformIO, that is why you see "[Error 5] Access is denied". Try to disable it for a while or add :ref:`projectconf_pio_core_dir` directory to exclusion/whitelist.
As we mentioned in "Solution 2", antivirus tools can block background file system operations. Another solution is to run :ref:`piocore` from a system terminal.
Open System Terminal, on Windows
cmd.exe
(not :ref:`pioide` Terminal)Build a project and upload firmware using :ref:`piocore` which will download and install all dependent packages:
# Change directory to PlatformIO Project where is located "platformio.ini" cd path/to/platformio/project # Force PlatformIO to install PlatformIO Home dependencies pio home # Force PlatformIO to install toolchains pio run --target upload
If "pio" command is not globally available in your environment and you use :ref:`pioide`, please use built-in :ref:`piocore` which is located in:
- Windows:
C:\Users\{username}\.platformio\penv\Scripts\platformio
Please replace{username}
with a real user name - Unix:
~/.platformio/penv/bin/platformio
Note
You can add platformio
and pio
commands to your system environment.
See :ref:`piocore_install_shell_commands`.
Full warning message is "UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal".
KNOWN ISSUE. Please move your project to a folder which full path does not contain non-ASCII chars.
KNOWN ISSUE. :ref:`piocore` currently does not support projects which contain non-ASCII characters (codes) in a full path or depend on the libraries which use non-ASCII characters in their names.
TEMPORARY SOLUTION
- Use :ref:`pioide`, it will automatically install :ref:`piocore` in a root
of system disk (
%DISK%/.platformio
) and avoid an issue when system User contains non-ASCII characters - Do not use non-ASCII characters in project folder name or its parent folders.
Also, if you want to place :ref:`piocore` in own location, see:
- Set :envvar:`PLATFORMIO_CORE_DIR` environment variable with own path
- Configure custom location per project using :ref:`projectconf_pio_core_dir` option in :ref:`projectconf`.
See related answers for error while loading shared libraries.
Answered in issue #291.
Answered in issue #384.