support

Forum Replies Created

Viewing 15 posts - 6,061 through 6,075 (of 7,816 total)
  • Author
    Posts
  • in reply to: Can't download devices #9043
    support
    Keymaster

    Hi,

    Yes, you can download them here: http://visualgdb.com/hwsupport/

    in reply to: CC3200 Launchpad SWD #9036
    support
    Keymaster

    Hi,

    We have rechecked the OpenOCD support for FTDI and CC3200 and it looks like the current FTDI configuration files do not support the SWD signals yet.

    There are third-party articles describing how to define them, but we have not retested those instructions. We would expect the OpenOCD maintainers to update the configuration files in the next few releases.

    Also if you encounter errors like “The current target requires JTAG”, please try switching OpenOCD to manual configuration mode and replacing the cc3200.cfg script with the cc32xx.cfg.

    If this does not help, please let us know.

    in reply to: How to install nRF5x IoT SDK on visual GDB? #9035
    support
    Keymaster

    Hi,

    This is something that the Nordic guys should know much better than us. Their softdevice is closed-source, so it’s hard to say how compatible different versions are. Please consider contacting the Nordic support or asking on their forums.

    in reply to: Per-project host aliases? #9034
    support
    Keymaster

    Hi,

    That sounds easy to add. We should be able to add this to the upcoming v5.2 beta.

    in reply to: Debugging w. VS2015 and Segger J-Link #9033
    support
    Keymaster

    OK, could you please share the error message you are currently getting? We should be able to suggest more once we see it.

    in reply to: How to Add New Libraries #9032
    support
    Keymaster

    Good to know it works. If you encounter further problems, feel free to contact us again.

    in reply to: How can I include sub makefiles? #9031
    support
    Keymaster

    Hi,

    We would not recommend just including a 3rd-party Makefile directly into your main VisualGDB project, as it may cause some variable conflicts and other strange bugs.

    We would instead recommend creating a new static library project for the GFX library, adding its sources to the project, specifying the include directories via the VisualGDB Project Properties, ensuring it builds and referencing it from the main project. If this does not work, please share the error messages you are getting and we will help you resolve them.

    If you want to try including the Makefile nonetheless, you can edit the project’s Makefile as follows (after the normal SOURCEFILES := … line):

    GFXLIB := <path to uGFX>
    include <uGFX makefile>
    SOURCEFILES += $(GFXSRC)
    INCLUDE_DIRS += $(GFXINC)

     

    support
    Keymaster

    Hi,

    Looks like the timer module is disabled in your project configuration. Please check the HAL_TIM_MODULE_ENABLED macro in the stm32f4xx_hal_conf.h file and define it if it’s missing.

    in reply to: How to install nRF5x IoT SDK on visual GDB? #8997
    support
    Keymaster

    Hi,

    In order to use a custom softdevice in your VisualGDB project, you will need to do 2 steps:

    1. Convert the softdevice from the .hex format to a .o file (see nRF51\SoftdeviceLibraries\ConvertSoftdevice.bat)
    2. Modify your linker script to have correct addresses/sizes for the softdevice FLASH/RAM and program FLASH/RAM (you can take those from the linker scripts in the IoT SDK).
    3. Change the name of the .o file with the softdevice mentioned in the linker script (inside the GROUP() statement).

     

    in reply to: Support for new ESP32 (dual-core ESP8266 with bluetooth) #8996
    support
    Keymaster

    Hi,

    Yes, we are definitely planning to support ESP32 as well as soon as we could some boards. We have ordered a few boards from seeedstudio and will post updates on our Twitter once we have a preliminary version of the BSP.

    in reply to: ADC Example project for the STM32F7 Discovery #8994
    support
    Keymaster

    Hi,

    We don’t have a specific ADC example for STM32F7, however if you get errors like ‘undefined ADC_xxx’, please try searching the solution for the definitions of those functions and check if they are grayed out by IntelliSense.

    If they are, most likely you are missing some configuration definition like HAL_ENABLE_ADC. Checking the code around the grayed out definitions should explain why they are not being compiled.

    If this does note help, please share the error messages you are getting and let us know if the function definitions are grayed out.

    in reply to: CC3200 Launchpad SWD #8993
    support
    Keymaster

    Hi,

    Have you tried explicitly selecting the SWD transport in the VisualGDB Project Properties window?

    in reply to: How to install nRF5x IoT SDK on visual GDB? #8988
    support
    Keymaster

    Hi,

    Sure, sorry, looks like the link did not get inserted properly first: https://sysprogs.com/w/forums/topic/nrf5x-iot-sdk-setup-in-visualgdb/

     

    in reply to: Per-project host aliases? #8981
    support
    Keymaster

    Hi,

    You can do this with environment variables as shown below:

    in reply to: Wait and attach to a process when it starts? #8980
    support
    Keymaster

    Hi,

    Unfortunately that won’t work reliably. GDB has support for multiple inferiors (i.e. debugging multiple process at the same time), but it’s very unreliable when it comes to handling events from the processes and stopping them. The solution with the custom script should be the easiest.

    To make it more clear please refer to the screenshot below for details:

Viewing 15 posts - 6,061 through 6,075 (of 7,816 total)