Hello,
I am having trouble getting environment variable substitution working in my .jdebug file, when trying to substitute into a file path (Lubuntu 18.04, Ozone 2.60k).
Perhaps my syntax is incorrect? According to the User Guide, "$(<varname>)" should be correct for Linux and Windows.
My .jdebug file has the following line in OnProjectLoad():
NORDIC_SDK is an environment variable defined in my user ".profile" file as:
Manually substituting the path works correctly, and opening a terminal window and running
I am having trouble getting environment variable substitution working in my .jdebug file, when trying to substitute into a file path (Lubuntu 18.04, Ozone 2.60k).
Perhaps my syntax is incorrect? According to the User Guide, "$(<varname>)" should be correct for Linux and Windows.
My .jdebug file has the following line in OnProjectLoad():
Project.AddSvdFile ("$(NORDIC_SDK)/modules/nrfx/mdk/nrf52840.svd");
NORDIC_SDK is an environment variable defined in my user ".profile" file as:
export NORDIC_SDK="$HOME/nRF5_SDK_15.2.0_9412b96"
Manually substituting the path works correctly, and opening a terminal window and running
echo $NORDIC_SDK
prints the expected result.