Forum Replies Created
-
AuthorPosts
-
February 28, 2016 at 19:42 in reply to: Clang IntelliSense: Error: use of undeclared identifier __nop #7694
support
KeymasterHi,
This happens because _nop() is not a GCC compiler extension and VisualGDB IntelliSense does not know about it.
You can work around it by adding something like #define _nop() to gcc_compat.h in the VisualGDB directory. The definition will only affect IntelliSense, so the code will be compiled the same way as before.
February 28, 2016 at 19:40 in reply to: Undefined reference to mysql while using cross-compiler #7693support
KeymasterGood to know it works. If you encounter further problems, let us know.
support
KeymasterHi,
The answer depends on the board type. Is the board based on Linux, or is it running barebone firmware?
support
KeymasterYes, there was a small bug in our Github repository. Please update your git checkout and try again.
support
KeymasterHi,
Please find the answers to your questions below.
We did not explicitly test ESP8266 with Atmel-ICE. You can try it at your own risk by specifying the corresponding interface script to OpenOCD, but we cannot guarantee that it will work.
The source code of the ESP8266 library is not provided by Espressif, so it’s not a limitation of VisualGDB.
Yes, the embedded edition is enough for ESP8266.
support
KeymasterHi,
When you are creating an mbed project, VisualGDB uses the files from the official mbed distro on github. Perhaps the file is named differently there? Can you find a BLE example specifically for mbed?
support
KeymasterHi,
This looks like either CMake or the toolchain is corrupt. Please try re-downloading and re-installing both of them.
February 19, 2016 at 09:27 in reply to: MSB3073 compile error when trying to use cross-compiler on local PC #7673support
KeymasterHi,
Placing the file under RemoteSourceCache does not automatically upload it to the Linux machine. Please either upload it directly with SmarTTY or add a pre-build action to upload it during build.
support
KeymasterHi,
Most likely you need to specify some subdirectory. Please open VisualGDB Project Properties on the IntelliSense Setting page, check the list of include directories and search them and their subdirectories for the BLEDevice.h file. Then use the #include <subdirectory/BLEDevice.h> format to include it.
February 17, 2016 at 09:19 in reply to: MSB3073 compile error when trying to use cross-compiler on local PC #7666support
KeymasterHi,
The problem happens because “C:\Users\Hillel\Downloads\Raspberry PI\bcm2835-1.49\src\bcm2835.h” is a path on the Windows machine and it’s not accessible when you build on Linux. Please consider uploading the bsm2835 library somewhere on the Raspberry Pi (e.g. /opt/src), specifying the directory with the .h files in the include directories in VisualGDB Project Properties and simply including <bsm2835.h> without the full path.
support
KeymasterThis option is only available in the Custom and Ultimate editions. If you want to upgrade, simply contact our sales for a quote.
February 16, 2016 at 10:40 in reply to: MSB3073 compile error when trying to use cross-compiler on local PC #7660support
KeymasterPlease check the Output window for more detailed error messages. If it does not help, please post the contents of the Output window here.
support
KeymasterHi,
The license key is tied to a specific computer, so moving it won’t help. Simply contact our support via the form on the website and we will reset your activation so that you can reactivate it on a new computer. If you don’t remember your activation key, just let us know your email and we will resend the key there.
support
KeymasterNo problem. Enjoy VisualGDB.
support
KeymasterHi,
Just update your STM32 BSP via Tools->Embedded Tools Manager. It should be version 3.4.
-
AuthorPosts