• mapping input to output exactly
    #include "stm32f0xx.h" #include "stm32f0308_Discovery.h" #define in0 GPIO_Pin_0 #define in1 GPIO_Pin_1 #define in2 GPIO_Pin_2 #define in3 GPIO_Pin_3 #define in4 GPIO_Pin_4 #define in5 GPIO_Pin_5...
  • how to get output
    Hi I am new to this software. I am doing my project on ADuC7026 through c programming. I have started with small program, but i cannot able see the output. suppose: #include<stdio.h> int main...
  • How input output works in MC
    Hi , I am very new to MC coding , and I am trying to simulate an ouput based on this table IP1 IP2 OP (first time) 0 0 = 1 0 1 = 1 //changing 1 1 = 0 1 0 = 0 (second time) 0 0 = 1 0 1 = 0 //changing...
  • input/output redirection in IDE
    Hi All, I am new to the µVision2 environment, so I don't know all the ropes yet. My question is this: I have a long text file which represents a data stream. Can I somehow feed this file to a program...
  • getting user input in Debugger
    I have written a small function as below: void checkKeyPress() { uchKeyPressed = P1; /* Read Port P1 */ uchKeyPressed = uchKeyPressed & 0x18; /* mask with 0x18 to check for P1.3 & P1.4 */ } /*...