• uVision Logic Analyzer GPIO in SW simulation?
    Hello, I try use sw simulator for debbuging STM32F103C8 ( DARMSTM.DLL -pSTM32F103C8) and I would like to monitor the status GPIOC pin 7 in the Logic Analyzer. In Setup Logic Analyzer I add PORTC.7...
  • testing procedure
    hi iam hosam iam a new member in this field of FPGA testing using JTAG and BSDL i just want a guide to get the procedure of testing FPGA using JTAG (just main points) to complete my degree of master...
  • is this procedure correct ?
    unsigned char read_val1; unsigned char read_val2; unsigned char read_val3; void send_uart(void); void send_uart() { #pragma asm S1 EQU 08H S2 EQU 09H S3 EQU 0AH S4 EQU 0BH E1 EQU 0CH...
  • Init
    void GpioInit(void) { // Set to inputs FIO0DIR = \ FIO1DIR = \ FIO2DIR = \ FIO3DIR = \ FIO4DIR = 0; // clear mask registers FIO0MASK =\ FIO1MASK =\ FIO2MASK =\ FIO3MASK =\ FIO4MASK = 0; /...
  • Specifying address of C-procedure
    How do I tell the Keil C compiler/linker to place certain C-procedures in specific parts of memory? Example: The procedure below must be placed at an address above 0x4000. void ADC_start...