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 Prayuktibid

  1. P

    [AVR] need Help to communication with multiple slave using SPI

    you can use gpio and make ISR on the master MCU (1 line for SS and 1 line for interrupt request per each slave). can I use 1 line for both cases(as SS as interrupt)? like this and another question for interrupt I have to use simple GPIO interrupt instead of SPI interrupt?
  2. P

    [AVR] need Help to communication with multiple slave using SPI

    Actually in my case It is bidirectional data transfer for each slave.. a slave can send data to master whenever it want and also for master.. master can send data to any slave whenever it wants and master should receive data from any slave when a slave send data to it by interruption . how can I...
  3. P

    [AVR] need Help to communication with multiple slave using SPI

    I want to communicate with multiple slaves using SPI protocol. I takes different SlaveSelect lines for respective slave.. I have very beginner in this field I don't understand how to proceed... but I have tested data transfer between single master and single slave before going to multiple...
  4. P

    [AVR] Problem on Data transmission through RS485 over Atmega32

    This the circuit diagram Code for MCU 1 #include <inttypes.h> #include <avr/io.h> #include <util/delay.h> #include <avr/interrupt.h> #define MAXTTEpin 2 #define SET_MAXTE(a,b) ( (a) |= (1 << (b) ) ) #define CLR_MAXTE(a,b) ( (a) &= ~(1 << (b) ) ) #define Led 1 #define Button 1 /*Initilize...
  5. P

    [AVR] Problem on Data transmission through RS485 over Atmega32

    Thank you very much to all for your kind help. Now My project is working flawlessly.
  6. P

    [AVR] Problem on Data transmission through RS485 over Atmega32

    See the Scope output I am newbie in this field please guide me how I will proceed?
  7. P

    [AVR] Problem on Data transmission through RS485 over Atmega32

    Thanks for reply Both RE signals are same as above.. I have observed in Scope. as per you its working fine then why I am not getting output? as per circuit diagram and code Leds should glow at the initial(when simulation will start) there after Leds will respond according to Buttons...
  8. P

    [AVR] Problem on Data transmission through RS485 over Atmega32

    I am trying to communicate between two Atmega32 through RS485 Driver .. I am using MAX487 IC and Atmega32 MCU, whenever I am simulating on Proteus its not giving any output.. I have done many way but I unable to solve this. Please help me. Here my schematics This is my code #include...
  9. P

    [AVR] Problem in MODBUS RTU communication between two arduino's

    I didn't debug this system Rx and Tx signal coming from arduino's 0 and 1 pins..showing in schematic
  10. P

    [AVR] Problem in MODBUS RTU communication between two arduino's

    I am doing a project to communicate between two arduino's using MODBUS RTU protocol. I have set One arduino as Master and Other as Slave. slave arduino connected with a potential meter to read the value analog value and store in the holding register of it. Master Arduino connected with a LED ...
  11. P

    [AVR] Need help implementation MODBUS TCP over arduino?

    I would Like to connect with FRonious solar Inverter through MODBUS TCP with arduino to READ and WRITE register value only. I want to set Arduino as Master and Inverter as slave and I want to use only two functions "Read Holding Registers" and "Write Single Holding Register" function code '3'...

Part and Inventory Search

Back
Top