Quantcast
Channel: Keil Discussion Forum RSS Feed
Viewing all 3049 articles
Browse latest View live

ARM: File unlocking (1 Replies)

$
0
0
Hi all, can anyone tell me how to unlock the file which is with the lock symbol? Can't we edit that file? Thanks

C51: NUVOTON keil C51 driver fail

$
0
0
Hello, I am new to Nuvoton .I have installed c51 compiler and keil uvision5. run Nuvoton_8051_Keil_uVision_Driver_v2.00.6561.exe . now , when I am trying to set option for target -> debug -> select Nuvoton_8051_Keil_uVision_Driver from dropdown menu and click settings button nothing gets happened. Even in utilities while selecting Nuvoton_8051_Keil_uVision_Driver from dropdown menu settings button does not show anything.

ARM: error 65: access violation at 0xD1010C54 (1 Replies)

$
0
0
At the middle of my project, I got an error **error 65: access violation at 0xD1010C54** I remember seeing a similar error before which I solved it by adding an initializer file with certain address ranges as stated here -> http://www.keil.com/support/docs/814.htm I am not too sure what does the new error mean and how do I go about getting rid of it. Anyone? Regards

ARM: No st-link detected (3 Replies)

$
0
0
When I tired to download the program the flash, I get the error"No st-link detected". I get the same error when I try to connect with STM32 ST-LINK Utility.Do I have a hardware problem or a driver problem? Please help!

C51: Program Size (2 Replies)

$
0
0
why am i getting this error Program Size: data=205.4 xdata=0 code=1619 how to fix this Thank you for your help,

C166: C166:XC2785

$
0
0
I write simple code for toggle PORT2.0 of xc2785 in keil simulator. when i start the simulator,the IO port not toggled. this is my IO port setting. Some thing is wrong in the (Peripheral/IO-ports/port2)in simulator window.In this panel there is DP2 and ODP2 register but in datasheet there is not!!! what is wrong? thanks. void init_port2() { P2_IOCR00 = 0x80;// Push pull output P2_OUT = 0x0001; // set P2.0 to high while (1) { /* Toggle P2.0 */ P2_OMRL = 0x01

ARM: error:flash download failed - "cortex-m3"

$
0
0
when I try to download code to flasH I get "error:flash download failed - "cortex-m3"". I tried to create my own Flash but couldn't set start and end addresses. How can I set init-end sdresses in Utilities-Settings? Or the problem is because of something else? PLEASE HELP! Thanks.

ARM: The size of the code

$
0
0
.\Targets\STM32F429_Discovery\project.axf: error: L6047U: The size of this image (62716 bytes) exceeds the maximum allowed for this version of the linker Hi to everyone!How can i solve this error? I have the MDK-Lite Evaluation Mode which you cant write above the 32K of the size of the code.what can i do to write adove the 32K of the size of the code??

ARM: Export or Save Performance Analyzer Output

$
0
0
Hello, Is it possible to Export or Save Performance Analyzer Output ? I want to save and open the Performance Analyzer data in an excel sheet. I have a requirement to present & compare performance data of different platforms or builds. The Performance Analyzer window seems very static with no option to copy / save / export the results. Is there any alternate way to do so ? Regards, Rakesh

ARM: CPU usage hits 100% when trying to debug (1 Replies)

$
0
0
When I start debugging, the CPU usage hits 100% and Keil gets stuck. Only 1 out of 50 times I am able to start debug. The only setting that is selected is the "load application on startup".. If I uncheck it the debug starts, but when I try to load the application via command "Load incremental" keil gets stuck again.

ARM: STM32F407 ADC Speed is slow

$
0
0
dear All, i have done a practice with STM32F407 to convert an analog channel. i prepare the configuration and initialization through STM32Cube MX with MDK 5. i write the bellow program to measure the speed of conversion: while (1) { HAL_ADC_Start(&hadc1); HAL_GPIO_WritePin(GPIOB,GPIO_PIN_12,GPIO_PIN_RESET); HAL_ADC_PollForConversion(&hadc1,1); HAL_ADC_Stop(&hadc1); HAL_GPIO_WritePin(GPIOB,GPIO_PIN_12,GPIO_PIN_SET); } th

ARM: bxCAN : non bloking read

$
0
0
Hello, I try to use the bxCAN module on STM32F407. I have a board sending CAN messages and a board receiving CAN messages. All is working fine in bloking mode with call to HAL_CAN_Receive function. But I have troubles using non bloking mode with HAL_CAN_Receive_IT function. Here is my main loop: for (;;) { halRes = HAL_CAN_Receive_IT(&s_hPxbCan, 0); if(HAL_OK == halRes) { halRes = HAL_OK;

ARM: Device STM32F407IE not supported by toolchain (3 Replies)

$
0
0
I'm trying to work on a µVision 4 project for the STM32F407IE using µVision 5. After converting, when I tried to compile, I got the error: Device 'STMicroelectronics::STM32F407IE' is not supported by Toolchain ! Using Pack Installer, I installed the software pack for my device. I also installed legacy support. I can select the device via the device database, but somehow the device isn't listed in Project -> options for targ

ARM: Device is not supported by Toolchain

$
0
0
Hi, Kindly advise any one for my issue. if i compile , i got this below error. STMicroelectronics::STM32F407IETx' is not supported by Toolchain ! i was installed all the related arm 5 and legacy support software also. but still the same problem. please help me to support for this issue. Regards, Abdul

ARM: uVision Keil (MDK-ARM) and UNITY (1 Replies)

$
0
0
Geeks, I need help to integrate UNITY for unit testing the embedded code written in C with uVision Keil IDE (MDK-ARM). Instructions to do so along with an example will greatly be appreciated. Thanks!

ARM: [Keil uVision] Stop debugger after test execution (2 Replies)

$
0
0
Hi, I have written some tests with the unity test framework. All tests are running on the simulator. Using the command line I am trying to automatically run the tests on my continous integration server. When I run my tests in the debugger, the test program runs into a HardFault error after main() is executed. I would like to stop the debugger after main() has been executed. Any suggestions on how to run my tests automatically are greatly appreciated. Thanks in advance

ARM: help with can project. (1 Replies)

$
0
0
Could anyone help me with this can code? This is from the team that made the corexxx board. The license is in the code and is ok to distribute. I compiled the code but I see no talk on either can channel with my analyzer to the pins directly nor in my can sniffer with transceivers. http://s000.tinyupload.com/index.php?file_id=28936805521018535423 I emailed the openxxx team but being non English speaking I think they were confused. I have the stm32f205rbt chip.

ARM: Incorrect compiling with 'Release' and 'Debug' Targets

$
0
0
Hello everyone! I've found myself in a spot of bother with Keil uVision 5.24.2.0 using ARM Compiler v5.06 update 5...although the build issues I have don't appear specific to these versions. Let me explain... In my Keil project I have two targets: 'Release' and 'Debug'. The goal is to globally enable/disable various debug options and change formatted output simply by selecting the appropriate build target and compiling. Here is how I tried to make it work: - In 'Option

ARM: Embedded filesystem problem question

$
0
0
Hello I deployed the Embedded Filesystem using the QSPI NOR FLASH(N25Q032A 4Mbyte). My system environment is as follows. OS : Windows 7 MDK version : uVision V5.23.0.0 (MDK-PLUS EDITION) CMSIS version : v5.0.1 Compiler version : v1.3.1 Middleware version : v7.4.1 MCU : STM32F745 NOR Flash : N25Q032A(QSPI) (4MByte) I made the EFS driver using the AT454 DBD2D file provided as a sample file. /* Flash Driver Control Block */ ARM_DRIVER_FLASH ARM_Driver_Flash_(0) =

C51: Silent install

$
0
0
Help. I need to make a silent install od C51 . it is posible to do that.
Viewing all 3049 articles
Browse latest View live