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 future

  1. F

    RTOS implementation.

    I am doing it as proof of concept on my free time... not actually building other projects on top of it.
  2. F

    RTOS implementation.

    Hello everybody, I am implementing a simple rtos with just 4 primitives: Timing, messages, events and counting semaphores. Tasks run when the kernel dispatches one of these primitives. Timing handles the task delays and timeouts. Messages passes a pointer from task to task by the use of a...
  3. F

    How to write a firmware which can run on multiple hardware

    Re: How to write a firmware which can run on multiple hardwa Hi, The compiled binary will not run on different controller, but you can have configurable source code. Use #define, #ifdef/#endif (if you are using C)... to configure which section will or not be compiled.
  4. F

    LCD 44780 and soft SPI sharing pins

    Hello, I need to add a spi eeprom to a board that has a LCD with no other free pins. The lcd is in 4bit mode. I am thinking about some glue logic in RS/EN/RW/D7, D7 being the real eeprom CS, but only allowed to go low for certain RS/EN/RW. D6,D5,D4 are SDO/SDI/CLK. What do you think? Thank you.
  5. F

    Serial number mapping to a flash memory address

    flash memory serial number Divide the code address by 8 to get the address and get the remainder to address the bit.
  6. F

    Another nice LCD menu library

    tinymenu c30 Tinymenu is very nice and works perfectly with C30. For the CCS compiler I could only manage to write a state machine. It is big, ugly but works. Did anyone managed to write an efficient menu system for CCS?
  7. F

    DsPIC33 eagle library

    eagle dspic33 Hi, I am looking for libraries of the latest microchip´s dspic33. As I am starting with eagle, I don´t want to risk using one made by myself. Thank you.
  8. F

    Can A Microcontroller Read A Windows txt file ??

    txt in microcontroller This is not an easy task, maybe a year worth of study will get the job done. You dont seem to know much about electronics. I think it would be better if you start reading about the FAT format. There are some entries at wikipedia's website. Then you can get some mmc...
  9. F

    ROUND PCB WITH EAGLE?

    eagle pcb +round Use the MITER command on the corners of your board, it will round off the corners until you get a circle.
  10. F

    solving polynomial in mcu

    Re: solviing polynomial in mcu Pre-compute a table for all possible ADC readings you have, for example: 8bit ADC will give a 256byte table.
  11. F

    If anybody need help in EAGLE, ask me in this POST !

    pic18f452 eagle library Is there a way to preset the track width in the schematic, so when the autorouter kicks in it does with the correct width?
  12. F

    Whats the time needed to saturate a coil?

    Re: Time to saturate a coil. And what about if it was a linear system? Like a relay or something with a fixed core. Just thinking about the relation between different drive voltages.
  13. F

    Whats the time needed to saturate a coil?

    Time to saturate a coil. Hi, I am looking for theories about coils and how they behave when it saturates. Ex: A selenoid takes 10mS to open when 12v is applied, how long it will take to open if we apply 8v? Thank you.
  14. F

    How to avoid overflows in C code?

    Re: Avoiding overflows in C Hi, I will use the "asm" way.. temp=sample0-sample1; // if(STATUSbits.N) temp=0; // temp=sample0+temp; // if(STATUSbits.C)...
  15. F

    How to avoid overflows in C code?

    Avoiding overflows in C Hello, Analysing this code: tperiod2=tperiod1; // tperiod1=tperiod0; // tperiod0=wperiod0; //...

Part and Inventory Search

Back
Top