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 piotr_jan

  1. P

    [AVR] Atmega328P Timer Interrupt Problem

    Two questions. Why did you such a simple task in so complex way. It is almost impossible to analyse in a short time. Start with something simple then write "libraries". If you have searched already, no one uses such a HAL-like (from much complex STM32 32 bit micros with far more complex...
  2. P

    [ARM] CAN Message Interrupts Service

    If the communication is fast just use DMA.
  3. P

    Why is my ISR not completing, and stalling the program?

    I am not very familiar with ros but as I remember it requires initialisation.ros::init and I don't think that you should call any ros functions inside the interrupt. As I remember ros uses timer interrupt itself.
  4. P

    Reading the latest value from incremented in ISR

    Variables used by interrupt must be volatile (avoiding optimizing them out by the compiler). You permanently (in the loop) initialize your timer. You always set OCR1A to 10. Your interrupt will never trigger (as you do not set timer to trigger any interrupts). Your process() call is not atomic -...
  5. P

    Two masters different speed i2c

    Master should free the bus after transmission. So we have 4 options: 1. Bus is busy and the second master gives up for some time 2. Bus is free and both masters try to access it at the same time - normal bus arbitration procedure applies 3. Bus is free and only one master takes control over the...
  6. P

    [General] Water level senso for kettle

    Hi Sorry for the long delay, and thank you for help. Actually I have sorted it another way: I just measure the temperature of the heating element and the speed of changes indicates the water level. Accuracy is good enough for the kettle (about +-15%)
  7. P

    Two masters different speed i2c

    Should work. Clock speed does not matter during arbitration, and then winning master will drive SCL itself.
  8. P

    [General] Water level senso for kettle

    Thank you - but i think it is to big for me. I think that the limescale will be a problem as well. Actually I have no idea how to measure the water level in the kettle.
  9. P

    [General] Water level senso for kettle

    Water level sensor for kettle Hi. I am working on an uC kettle and have a problem with water level sensor. It has to be something very simple, reliable and temperature resistant. It does not have to be to precise as it only is used as a guide for the micro. Have you heard about such a sensors...
  10. P

    STM32F407 Discovery board

    #include <stdint.h> xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  11. P

    OpAmp is generating a lots of noise

    The resistor is in the loopback. I don't have the schematics. It is just simplest possible voltage follower. When it is welded - it works much better And it works not too bad actually.
  12. P

    OpAmp is generating a lots of noise

    I have added a 5.6k resistor and now it looks much better. it is actually soldered. The breadboard version works much better
  13. P

    OpAmp is generating a lots of noise

    Oh I forgot : CLC4007ISO14 It was lete :)
  14. P

    OpAmp is generating a lots of noise

    I dont think so. Actually maximum signal voltage is 2.7V, Vcc is 5V. It is a Rail-To-Rail
  15. P

    OpAmp is generating a lots of noise

    Hi Guys. I am working on my hobby project - an oscilloscope based on ST Nucleo 446RE board. Everything is working fine and the project is progressing quickly. Unfortunately I am absolutely useless when I have to design something analogue. I need fast input buffer. In first prototype version I...

Part and Inventory Search

Back
Top