support

Forum Replies Created

Viewing 15 posts - 5,671 through 5,685 (of 7,857 total)
  • Author
    Posts
  • in reply to: Problem adding section to linker script #10279
    support
    Keymaster

    Hi,

    Most likely something went wrong with the alignment and one of the sections ended up not being aligned properly. Running “arm-eabi-objdump -h <ELF file>” and checking the section addresses and sizes could explain what could be wrong.

    in reply to: Problem adding section to linker script #10269
    support
    Keymaster

    Hi,

    Please try using the section-relative address, i.e.

    . = 0x0000FC00;
    • This reply was modified 8 years, 8 months ago by support.
    • This reply was modified 8 years, 8 months ago by support.
    in reply to: Forum feature requests #10266
    support
    Keymaster

    Hi,

    You can click on your username in the left column of the original post to view the stats page.

    We do realize the importance of the feature, however when it was enabled, it was used by less than 1% of users and was causing constant disruptions due to mail server issues. If you want to get instant notifications per email, please consider using the support form.

    As we rely on an existing forum engine, we have to live with some limitations imposed by it, like lack of efficient mechanism of attaching images. We understand the inconvenience caused by it and we may eventually address it, but currently we are prioritizing work on VisualGDB features over this.

    in reply to: ignore Format Specifiers in Visualizers () #10262
    support
    Keymaster

    Thanks for reporting this, we have improved our support for format specifiers in this build: http://sysprogs.com/files/tmp/VisualGDB-5.2.14.1370.msi

    in reply to: Build Error with STM32CubeMX generated code #10261
    support
    Keymaster

    Hi,

    Looks like you have first imported the system_stm32f0xx.c file to the project and then deleted it. Please either remove the non-existing file from Solution Explorer, or restore it on the disk.

    in reply to: VGDB200 #10260
    support
    Keymaster

    Hi,

    Please try enabling the verbose mode via Tools->Options->VisualGDB->General and try building again using the TAR mode. The log should should which files failed to transfer. Most likely this is related to some sort of a file permission problem.

    in reply to: Problems with STM32CubeMX and VisualGDB #10254
    support
    Keymaster

    Hi,

    The easiest way to fix that is to use the VisualGDB header discovery feature to quickly locate the stm32f0xx_hal_conf.h file (should be somewhere in the project folder) and adjust the build settings automatically.

    in reply to: Build Error with STM32CubeMX generated code #10253
    support
    Keymaster

    Hi,

    Yes, please check the Output window (View->Output). It should contain the detailed build log listing all errors printed by the compiler, linker and other tools. If you are not sure, please post the log contents here and we will help.

    in reply to: Forum feature requests #10250
    support
    Keymaster

    Hi,

    Thanks for your suggestions. You can actually view a list of your threads and comments by clicking on your username (or via this link). Regarding emails, we had it enabled previously, but unfortunately many mail servers treat such notifications as spam, so we started getting many “invalid email address” notifications and had to disable this.

    We will consider adding support for attaching images, but currently it’s disabled to improve forum responsiveness.

    in reply to: Problem adding section to linker script #10249
    support
    Keymaster

    Hi,

    The “GDBServer Console” command will only be available during debugging, so you can view it after pressing F5.

    Based on the other details you provided, it looks like OpenOCD may have troubles programming sections that are not properly aligned. Please try modifying your linker script to place the new section inside the .text section:

    .text :
    {
    *(.text)
    ...
    . = <end of FLASH> - <expected size>;
    *(.eeprom)
    . = ALIGN(4);
    } > FLASH

     

    in reply to: Problem adding section to linker script #10240
    support
    Keymaster

    Hi,

    The testing only checks the JTAG connectivity and does not try to load the FLASH. In order to see FLASH-related errors, please select Debug->Windows->GDBServer Console.

    in reply to: MSBuild back-end and static Linux app #10236
    support
    Keymaster

    Hi,

    You can add “-static” to via VS Project Properties -> Linker -> Command Line -> Additional Options.

    in reply to: Problem adding section to linker script #10235
    support
    Keymaster

    Hi,

    Please check the contents of the OpenOCD window for more specific error messages. This should explain why FLASH programming fails.

    in reply to: ld.exe: cannot find -lasan #10234
    support
    Keymaster

    Hi,

    Looks like the address sanitizer is not supported your platform. Please note that it does not work on barebone embedded targets.

    in reply to: Feature Request: clang-tidy integration #10233
    support
    Keymaster

    Hi,

    The final release would be this summer. Currently we are focusing on updating support for devices and frameworks and we will be introducing another product for embedded software developers in the next few weeks. You can get a feed of our updates on our Twitter page: https://twitter.com/Sysprogs/

Viewing 15 posts - 5,671 through 5,685 (of 7,857 total)