Search Results - MEL PICBASIC Forum


Search:

Type: Posts; User: tcbcats; Keyword(s):

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    33
    Views
    34,254

    PICkit2?

    Darrel,
    I got it to work....
    I had to remove the PICkit2 programmer from the IDE list of programmers and then re make the custom programmer again from scratch.
    It seems that you cannot edit both...
  2. Replies
    33
    Views
    34,254

    PICkit2?

    I just set the IDE default file to the PICkit2 folder for my testing.... with a LED light blinker test program.
    The -h2 does nothing I tried -h5 ....+ all combos etc with no change in the way the...
  3. Replies
    33
    Views
    34,254

    PICkit2?

    Darrel,
    I changed the programmer exe and now I get a dos window for a short instant... then it goes away... It is so fast that I cnnot see anything in the window.... programmer does nothing and...
  4. Replies
    33
    Views
    34,254

    PICkit2?

    Darrel,
    I set up my programmer as you directed and still get the same results...
    The PICkit2 application starts and and just shows that it found the connected PIC... thats all. I have to manually...
  5. Replies
    33
    Views
    34,254

    PICkit2?

    Darrel...
    Did this give you the one click flash function from the IDE?
    -pPIC$target-device$ -f$hex-filename$ -M -R -T -h2

    I tried this and several variants with no luck.
    The programmer...
  6. Replies
    33
    Views
    34,254

    PICkit2?

    Thanks Darrel,
    I will check it out...
    tcbcats
  7. Replies
    33
    Views
    34,254

    PICkit2?

    Maybe I did not ask my question in the correct way...
    The IDE has a button that will compile and program(flash) your PIC with one click (if you have the correct script installed). It starts the...
  8. Replies
    33
    Views
    34,254

    PICkit2 script?

    Yes I use it that way now.
    I would like to use the programmer as I use the MEL USB unit and make it a one click use.
    Once you go one click.... you don't want to go back...
    Do you know if the...
  9. Replies
    33
    Views
    34,254

    Auto program for PICkit2 ?

    I just installed a new PICkit2 and would like to know if the auto start and program will work.
    When I select compile and program in the IDE, the programmer app starts but I have to manually grab the...
  10. Replies
    1
    Views
    3,029

    Warning 221 after upgrade to ver 2.50a

    I just udated 4/08 from a new factory CD to ver 2.5a.
    I now get the warning message on all code that uses the 18f252 processor.

    "Warning(221) c:\pbp\18f252.inc 18 :invalid message number (230)"
    ...
  11. Replies
    1
    Views
    3,479

    Converting Dec word to Hex string

    I have a word var that represents a 4 or5 digit decimal number... (00000 or 01234 example)
    I need to convert the var word to a string of 4 or 5 bytes that repsent the digits of the number.......
  12. Replies
    9
    Views
    6,872

    Stored in a variable

    It is in a variable... not in EEprom or from a serial source.
    Tcbcats
  13. Replies
    9
    Views
    6,872

    Need help converting to ASCII Hex format

    This is the task…
    I have a number stored in a 16 bit word. The number is up to 5 digits like 01389.
    I can also convert it to the format $30, $31, $33, $38, $39 in a 4 byte string. If needed. Each...
  14. Replies
    1
    Views
    2,518

    Setting up 5 HPWM pins on 18F4680

    I need to setup 5 hardware PWM outputs on the PIC18F4680.
    Has anyone set these up as dedicated outputs that run in the background?
    I see the PB setup for HPWM 1, and 2 but not anything more that 2....
  15. Replies
    2
    Views
    4,497

    MXcom "C-BUS" interface to PIC question

    I need to interface with a MX829 Baseband Signal Processor that Has a MX-com "C-BUS" interface. This interface is a MX-com defined standard but I am told it may be compatable with some PICBASIC I/O...
  16. Replies
    7
    Views
    5,506

    Got it working.... with ADCIN

    I did not find the problem but did get the code working.
    I was setting up the A to D with the direct registers and had the setup wrong.
    I just changed the code to use the ADCIN command and all is...
  17. Replies
    7
    Views
    5,506

    HPWM and A to D interaction question 18F252

    PIC18F252 with HPWM on C2... 20 Mhz osc.
    Using A0 and A1 as analog input with internal 5 volt ref.
    Fixed low Z analog input for testing.
    All power is stable

    HPWM 1,{0 to 255},17000

    As I...
  18. Replies
    0
    Views
    2,622

    Data logging with Atmel AT45DB041B

    Has anyone used the Atmel 4 megabit Data flash chip with PB Pro for data storage?
    The part is AT45DB041B
    2048 pages of 264 bytes each.
    tcbcats
  19. Replies
    11
    Views
    8,206

    Question on internal workings

    My question was about the 4800 baud receivers.
    Did you speed up the PIC to PIC serial com path in order to have more time for processing the data from each listener?
    I understand that the final...
  20. Replies
    11
    Views
    8,206

    PIC RS232 serial muxer

    NavMicroSystems,
    Did you keep the RX PIC's output at the same 4800 baud or did you speed them up for sending the data to the combiner 16F or 18F PIC?

    I was thinking of bumping it up to 9600 just...
  21. Replies
    11
    Views
    8,206

    RX two serial inputs at the same time?

    I need to collect data from two serial sources and the data can arrive at the same time or multi byte offset from each source. These are GPS receivers at 4800 baud with little intercharacter byte...
  22. Replies
    0
    Views
    3,394

    Need help converting NMEA data

    I hope someone can give me some direction to do the following…
    I have GPS NMEA position data that has the Lat and Lon in DDmm.mmmm format. That is, Degrees, minutes, tenths of minutes, hundredths of...
  23. Replies
    4
    Views
    3,782

    Thanks for the info

    Thanks for the response....
    I thought the code space was almost the same since I was only doing the pause and nothing else.

    I'm not out of code space.... just needed to know if I was on the...
  24. Replies
    4
    Views
    3,782

    GOSUB to do a pause?

    I have about 20 "PAUSE 20" calls in my program. If I change the code to do the pause with a gosub like this...
    *******************
    gosub time20

    time20:
    pause 20
    return
    ******************
    ...
  25. Replies
    0
    Views
    4,506

    PIC Development Boards

    Check out our new development breadboard for the 18F252 and 452 series.

    Our site is at http://www.geostarsystems.com

    The products are designed to support MELabs PicBasic and use the new serial...
Results 1 to 25 of 35
Page 1 of 2 1 2