Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by saur

  1. S

    vhdl: logical and of two vectors of std_logic_vector type

    I've two vectors and I want to perform logical and on them: eg ........... mod_ins : IN STD_LOGIC_VECTOR(7 downto 0); ........ signal mod_ena_sig : STD_LOGIC_VECTOR(7 downto 0); ............ if(mod_ins = mod_ins and mod_ena_sig) then ...... It seems to say there is some error in the if...
  2. S

    [SOLVED] C typedef can't understand

    In the code snippet typedef void (*XilExceptionHandler) (void *data); the XilExceptionHandler has been defined as a pointer to function which takes a void pointer a input parameter and returns nothing, according to what I've understood. Pls correct me if I'm wrong... Now if I use it as...
  3. S

    [SOLVED] C typedef can't understand

    Hi debabrta kar Thanks for the reply. In the example code: they are using the data type XilExceptionHandler for a value Handler. So does it mean the Handler contains void data as the Data pointer points to a void type?? Thanks Saurabh
  4. S

    [SOLVED] C typedef can't understand

    Can anyone help me, as to what the following code snipped means? typedef void (*XilExceptionHandler) (void *data);
  5. S

    ZC702 (Zynq 7000) Interrupt Programming

    I'm using ZC702 board by Xilinx, which uses Zynq 7000 SoC. Its TRM says, the CAN0 interrupt is connected to GIC which then sends the interrupt signal to the processor (Cortex A9). I tried to enable the interrupt by programming in Xilinx SDK, but it is not working. When I check the hardware in...
  6. S

    How to take input in VHDL

    In C, we can take input from the user at runtime using the "scan" command. Is there a way to do the same in VHDL i.e. without using a file with pre-defined values???? Thanks for any help and suggestions... Saurabh
  7. S

    Ethernet using lpc1857

    Well, thank you padmaneela... Are you the author NPN? If yes then I believe your transmission has started.... Congrats If not good Luck And are you using the sample code or made one yourself? I had tried with sample code but it didn't work for my controller
  8. S

    Ethernet using lpc1857

    Well, here is the link : https://www.keil.com/arm/selector.asp I think its easy to understand from that site and according to it, I believe you would need the license
  9. S

    Ethernet using lpc1857

    Yeah, it is necessary to have an MDK Pro License to work with Ethernet... My Institute had a 1 month free trial license and they had not renewed it, so I'm not sure about the cost of license... But you do need the license for Ethernet programming... Good Luck, and if you find a solution to...
  10. S

    Ethernet communication

    Can anyone share with me, the basic procedure to establish an Ethernet connection between a computer and a microcontroller kit. A flow diagram would also be great. Thanks...
  11. S

    Ethernet using lpc1857

    I've tried the following things: Got the MDK PRO license. Used the program given by Keil BSDServer. Set my PC's IP and set the Default Gateway of my PC as the IP of the board. When I connect them the port LEDS orange and green constantly glows. But when I ping the board it says Request Timed...
  12. S

    Ethernet using lpc1857

    I'm using LPC1857 on MCB1800 board to write a C code to perform Ethernet communication. I used the functions provided in the demo program to set up a connection but whenever I ping using my Laptop, it always says destination host unreachable. I'm using Keil uVision4 IDE and using the functions...
  13. S

    I2C bus communication code... help needed

    This is the code I'm using to communicate with a temperature sensor IC LM75A, with in built A/D converter. Slave address is 0x90. while(1) { GLCD_DisplayString(5,10,1,"A"); LPC_I2C0->CONCLR = 0x08; /*clear SI flag*/ LPC_I2C0->CONSET = 0x60; /*Start condition has been transmitted*/...
  14. S

    [SOLVED] Some problem understanding the code

    #define SDRAM_BASE_ADDR 0x28000000 static uint16_t *fb = (uint16_t *)SDRAM_BASE_ADDR; void GLCD_DrawChar (unsigned int x, unsigned int y, unsigned int cw, unsigned int ch, unsigned char *c) { unsigned int i, j, k, pixs; k = (cw + 7)/8; if (k == 1) { for (j = 0; j < ch; j++) {...
  15. S

    [SOLVED] C program basic.. but can't understand

    Thanks, I now understand it. Thank You for patiently helping me out

Part and Inventory Search

Back
Top