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 upand_at_them

  1. U

    Reading the latest value from incremented in ISR

    I don't use C for microcontrollers, but I don't see where you've declared your variables. Make sure they're declared globally so that their values are accessible everywhere.
  2. U

    [SOLVED] problem inn disabling interrupt

    As FvM said, the IE bit is for enabling interrupts for a specific peripheral. If you don't set the specific IE bit then the interrupt service routine will not be called when that specific interrupt happens.
  3. U

    [PIC] Problem with PIC 18F4550

    Also, it's more proper to write output values to the LATCH register not the PORT register.
  4. U

    Help on debuging nmea message

    Yes, proprietary sentences start with "$P". You'll need to get the sentence definition from the manufacturer.
  5. U

    Switch Statement for PIC Microcontroller

    You have the entire PORTA set to inputs. Do you have pullup resistors on all of those pins? If not, they're floating, which is not good. Unused pins should either be set to output and driven low, or set to input and tied high or low. Most peope opt for setting them to outputs. What does...
  6. U

    hyperterminal response

    What do you have connected to the COM port? "Enter" is just another character or two. What happens with it depends on how the receiving device is coded to handle it.
  7. U

    Share one LCD between two projects

    Would be best if you had one microcontroller dedicated to controlling the LCD. Then, your two projects can send display data to that.
  8. U

    [PIC] PIC16f1716 - I2C Initialization problem

    Hi nikhilsigma, You should probably turn off the watchdog timer (WDTE) in your config section. It's enabled by default, so unless you need it and know how to use it it's best to turn it off. Do you have a hardware debounce circuit on RB5? Switches need to be debounced. It can be done with...
  9. U

    [PIC] PIC UART bootloader considerations

    You don't need a pulldown resistor for the transistor base. Pullups/pulldowns are usually used for FETs to prevent a floating condition. Almost any value is fine for the base resistor, as you just want to minimize current consumption from whatever is sourcing it. Your collector current is...
  10. U

    [PIC] PIC18F87J60 send GET to HTTP server

    I don't have any experience with this chip or the application. A quick Google search turned up this, which may be helpful: https://forum.mikroe.com/viewtopic.php?f=88&t=50719&hilit=client I hope you figure things out, or someone replies with more knowledge.
  11. U

    [PIC] PIC18F87J60 send GET to HTTP server

    It looks like it can only handle requests to it. That is, to act as a web server. Not a client. Perhaps that is the limitation of that PIC?
  12. U

    [PIC] PIC18F67J60 blink led on LEDA (or LEDB) hello world

    I don't know if you also have to enable/disable something...But you're supposed to write to the output LATCH register; the PORT register is for reading. And according to the datasheet (https://ww1.microchip.com/downloads/en/DeviceDoc/39762f.pdf) PORTA is not intended to drive LEDs. Use PORTB...
  13. U

    Arduino board for start up. Which one to buy

    Even cheaper on eBay, BangGood, DealExtreme. I would stick with ones that have the Atmel MEGA16U2 or the CH340G interface chip. For USB. There are known issues with fake FTDI chips.
  14. U

    Oscilloscope probe Ground clip connect to negative supply causes a short

    https://www.eevblog.com/2012/05/18/eevblog-279-how-not-to-blow-up-your-oscilloscope/

Part and Inventory Search

Back
Top