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 LightDiodeDesigns

  1. L

    [Moved] dspic30f2010 External oscillator

    Re: dspic30f2010 External oscillator This is what my interrup looks like for a PIC24HJ in similar circumstances.... void __attribute__((__interrupt__,psv_auto)) _ADC1Interrupt(void) { int i = 0; unsigned int iPos =0; unsigned int* iBuff ; iBuff = &ADC1BUF0...
  2. L

    [SOLVED] Pic Kit3 Debugging Problem with PIC18F4550???

    :-) We'll get you there mate, don't worry, you're in the best of places!! I found all sorts of strange things can screw up debugging sessions, changing the OSCCon value on a 16f723 is one example that foxed me for a while... :-| If I'm using the whole of PORTB I normally put 2 jumpers in for the...
  3. L

    [SOLVED] Pic Kit3 Debugging Problem with PIC18F4550???

    Can I ask, are the programming pins part of PORTB? if so TRISB = 0x00; TRISC = 0x00; Would make the PORTB6&7 (PGD and PGC) "move" and screw up debugging.... Just to test, try { TRISB=0xC0; } and see if it'll debug... I've not got one to hand to test it... I always try and leave the pgm/debug...
  4. L

    DIY Moving Message Display

    If you are ever in leicester UK and need a hand making things, I am *perfectness-in-a-box" when it comes to soldering small bits, I've just moved "down" to 0.05" legs "for fun", and I've a lot of real experience in LEDS, https://www.youtube.com/watch?v=17JAe7xlB9k will help explain a bit :-) I...
  5. L

    DIY Moving Message Display

    Nice, we like it :-) Can you do a vid matey ? :-) NEAL
  6. L

    [Moved] dspic30f2010 External oscillator

    Re: dspic30f2010 External oscillator Thank you :-) I'd "just got to the point of filters" when I got distracted with some other stuff.... I like the DSPIC30 in 40pin form, big voltage range and lots of legs, my kinda thing... I'll be in touch mate, when I get the samples DSPIC33's setup I want...
  7. L

    [Moved] dspic30f2010 External oscillator

    Re: dspic30f2010 External oscillator I've got some code you can have that does a similar job, but no external references.. There's all sorts in here but you might be able to pick off some good bits.... I'd just got to DSPIC's when I started something else, but MicroChip-Samples have let me have...
  8. L

    Raspberry Pi

    My "1st PI" album :-) **broken link removed** Neal
  9. L

    Anyone with a Raspberry PI?

    eh Bien! :-) **broken link removed** Lovely! :-) When the "BIG TV" is in use I've got the PI's composite video plugged into a USB-video-input on my usual pc, so I can SSH to the PI, and play 3d coding but all nicely in separate windows... There's an "apt-get alsa-utils" to run and a module to...
  10. L

    PIC18f2680 with MPLAB using C

    #define SPBRG_VAL ( ((64000000/BAUD_RATE)/16) - 1) #if SPBRG_VAL > 255 #error "Calculated SPBRG value is out of range for currnet CLOCK_FREQ." #endif void ConsoleInit(void) { //OSCTUNEbits.PLLEN =0; OSCCONbits.IRCF=7; TRISC7 = 1; TRISC6 = 1...
  11. L

    TIMER1 RTC, oscillator accuracy problem, PLEASE HELP.

    The 16f88 datasheet suggest using an external temperature sensor and a lookup table of temperature-to-oscTune values to get "an accurate RTC" from the 16f88... In the PIC24, the RTC has a "tuning value" that is how-many-ticks-per-minute to add or subract from the timer value, and tends to keep...
  12. L

    PIC18f2680 with MPLAB using C

    Yeah, CMCON needs clearing to give the analogue pin back.. Wrong, didly wrong NEAL
  13. L

    [Moved] dspic30f2010 External oscillator

    Re: dspic30f2010 External oscillator I agree with BigD, sounds like the chip's gone into internal-32k-frc mode if there's a "slow clock" symptom... Try disabling the "failsafe" oscilator and see if that stops the LEDs blinking at all, then the oscilator side has to be working for anything to...
  14. L

    Anyone with a Raspberry PI?

    Gah, it'll be here soon I hope! :-) I'll look forward to you getting one and having a play!! :-) I was *lucky* with mine, it came as a result of a mail from RS saying "order it now", and was here within 4 weeks... I've got it connected to a media-streaming server (Just so I can use a USB-dongle...
  15. L

    DIY Moving Message Display

    I'd suggest "abstracting" the LED matrix scanning, the HTC1632c (based EBay available) panels make life easy with just 4 signals from an MCU and power... https://www.youtube.com/user/LightDiodeDesignsUk?feature=mhee Cool indeed, LED messaging! :-) NEAL

Part and Inventory Search

Back
Top