Questions tagged [keil]

Keil IDE and compiler tools for ARM and other embedded microcontrollers. This includes: ARM Development Tools C166 Development Tools C51 Development Tools C251 Development Tools Debug Adapters Evaluation Boards

Keil IDE and compiler tools for ARM and other embedded microcontrollers.

The Keil IDE includes:

  • ARM Development Tools
  • C166 Development Tools
  • C51 Development Tools
  • C251 Development Tools
  • Debug Adapters
  • Evaluation Boards

More information is available at http://www.keil.com/

818 questions
-3
votes
1 answer

Keil / Nucleo - 'unknown type name' despite type being defines (I think)

Im trying to generate analog signal with Nucleo RF411, started with https://developer.mbed.org/handbook/AnalogIn demo (I wanna use ADC to check if/how DCA is working), AnalogIn seems to be working just fine - Im getting some data. But I can't seem…
Benji
  • 23
  • 1
  • 5
-3
votes
1 answer

32 bit limitation of MUL in ARM Assembly

In ARM Assembly each register can contain 32 bits/1 word of information stored in it. That's why when you try to store a value larger than 255 it gives you an error However, the MUL instruction seems to not have this limitation. You can multiply two…
-3
votes
2 answers

C is ignoring byte assignment?

Im doing something wrong. This is the piece of code from ARM code (Keil5 IDE): uint8_t * at_ss_data = (uint8_t *)("\n\rAT$SS=AA AA\n\r"); at_ss_data[12] = 0; but the 12th index (the last A) does not change in the variable when the code is pushed…
MarcelH
  • 43
  • 5
-3
votes
2 answers

gcc can compile with object file compiled from keil-arm compiler?

project chip : nordic nrf51822 256KB NRF51 SDK version : 6.1 I'm converting my project to OSX GNU from windows keil because of license problem. There is some .o files made by keil-arm complier in my previous project. and I don't have those c…
-4
votes
4 answers

How to convert Decimal value to Hexadecimal value then extract the specific value in C language oe Embedded C?

I need to set input value as decimal int data = 2000; and then, output as hexadecimal string or char format: hexValue = 0x7D0; then need to extract the value in following format: char hexdata[]= {0x07, 0xD0}; How can this be achieved by writing…
Farhan
  • 5
  • 1
-4
votes
2 answers

Why do I get this warning?

I'm trying to write this program: #include "stm32f10x.h" #include "ILI9325.h" /* Private functions ---------------------------------------------------------*/ /******************************************************************************* *…
Roh
  • 127
  • 1
  • 12
-4
votes
2 answers

Compare Char[] with String in C "Embedded"

I try to create two function to split string become 2 part , the first function i want to get string "Mode 1", from serial port when RX_IN_CHR_UART variable, filled data like "Mode 1 34", and the second function i want to get the "34" this…
Adhy
  • 92
  • 2
  • 10
1 2 3
54
55