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 kef

  1. K

    I can´t communicate with a motorola 68hc11 on a BotBoard2

    Re: I can´t communicate with a motorola 68hc11 on a BotBoard PCBUG11 doesn't work with modern computers. 500MHz or less AMD/Pentium can be way too fast :). Google for winbug11.
  2. K

    implementing floating point code - help

    1. Try QT4 2. The worst case stack oriented HC08 FP implementation should require no more than 2*4(single prec arguments)+2(return address)+ <4(for temporary argument storage)+optional1(sign)+optional1(exp). So max 16 bytes. You have 128 and I don't see your problem. 3. Google IEEE754 4. Take...
  3. K

    IEEE 754 floating numbers from Visual Basic to PIC microcont

    ieee754 vb Does VB have pointers? I think yes. Then try to convert this float a; char a1,a2,a3,a4; a1=*(char*)&a; a2=*((char*)&a +1); a3=*((char*)&a +2); a4=*((char*)&a +3); Compiled for little endian cpu a1 will contain lowest bits of mantissa and a4 mantissa sign+7msb of biased exponent...
  4. K

    Which TCP/IP stack is better, uiP or openTCP?

    uip vs lwip uIP is good for every small MCU. It requires as little RAM as is needed for single TCP/IP packet. RAM usage is really very low. http://dunkels.com/adam/uip/
  5. K

    CAN with PIC18F458 ? any working example?

    Connectors and physical layer are custom :). Depends were are you going to connect. Typical transceivers are Philips TJA1050(newer) and PC82C250(older).
  6. K

    Looking for info on HCS12 Programming...

    For MEBI interfacing check www.hc12web.de . RAM.Bo256 for schematic and https://www.hc12web.de/rambo32/index.html for explanation. Best CAN example is here **broken link removed**
  7. K

    CAN with PIC18F458 ? any working example?

    Check Microchip application notes: **broken link removed** 8kBytes? Standard defines max 8 data bytes in data message. You have to split your data. Check standards: **broken link removed**
  8. K

    Help With C Program please

    No, they don't . Headers contain declaration's of variables and types and declarations of functions(prototypes). No obligations or special rules for headers. You can declare everything when you need to. If main.c makes calls to external modules you can declare external functions/variables in...
  9. K

    Help With C Program please

    Hi, GrandElf If you are lerning C avoid when you can any multitasking OS. It's another big thing to learn. I didn't undestand what you are trying to do. You moved CancelCall() to another *.c module? If yes declare CancelCall() in you main module. void CancelCall(void); // declares...
  10. K

    Increase PWM frequency with 68HC11 ??

    frequency of pwm on 20 mhz crystal 1. HC11 with 2MHz Eclock can generate in best case 7.8125kHz PWM output with 8bits of resolution, not 15kHz. + It hasn't hardware PWM generator -so it's difficult to generate outputs for near to minimum and maximum output values. 2kHz sounds more real. 2...
  11. K

    Increase PWM frequency with 68HC11 ??

    increase the frequency of a pwm For 8 bits and 4MHz busclock (crystal is 16MHz): Max PWM frequency= 4000000/256=15625Hz. No way to achieve higher frequency without lowering of resolution. For 60KHz PWM period should be 4E6/60k=66-67 ticks of E-clock or little more than 6 bits of resolution...
  12. K

    Any alternatives to HC12 (>=3 OC, >=2IC) ?

    I'm looking for alternatives to HC12/11 with 3 and more 16bit timer output compares with pin auto-set/clear functions.

Part and Inventory Search

Back
Top