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 maui

  1. M

    Application to send commands to Hyperterminal

    hyperterminal send command G'day champnim, Why do you want to send commands to Hyperterminal? How are you connecting your computer to your phone ?
  2. M

    CANbus simplest settings for starting

    G'day atferrari, Does the 18F4585 have a build in CAN hardware ? If so find some example software and just use the same settings to start. A common CAN setup is standard identifiers and 500K bus speeds. Not knowing anything about the UC I don't think I can help anymore than that. Darren J.
  3. M

    C Structure (Keil Compiler)

    G'day Help The problem you have here is in your function declarations There is no return type specified on pre-ansi compilers this was allowed and it would assume an int return type. I believe in the ANSI standard the return type has to be specified. So add a void return type to your...
  4. M

    What does Bit Bang mean in USB programming?

    Re: Bit Bang G'day Johnson, Bit Banging is using "General Pourpose IO" so simulate a communications device like a UART. In USB ? I gues it would be using GPIO to talk to a RS232 to USB chip. Darren J.
  5. M

    SPI question: how does the slave know the start of Byte?

    Re: Basic SPI question G'day saudrehman, The SPI protocol has an enable data and clock line. If you only have one slave on the bus and hold the cs low you only need a data and clock line. The basic answer to your question is when the master is not sending out data it will not strobe the clock...
  6. M

    About testing the Real-Time -OS ?

    G'day, You should be testing an RTOS on actual hardware, not in an emulated environemt. You should be able to calculate the timing of the RTOS yourself from the code, infact you should be writing the code with things like max latency in mind. In a small RTOS this will mostly likely just be...
  7. M

    why my c-compiler can't read my cod?

    function declared implicit int G'day, These errors all look like they are caused by not including the correct headers. You can import header files with the following: #inlcude "header.h" You should find which headers contain the prototypes for the functions you are using and which contain...
  8. M

    Interaction Device Driver and Kernel

    This depends on the kernel but most drivers sit on a higher abstraction level than the core kernel. The kernel will define it's interface to the driver. As the driver just abstracts between the hardware and the kernel the kernel interface is a major factor in driver design. Because of the...
  9. M

    Preemptive RTOS Design Help

    rtos deisgn you could also try http://www.picos18.com/index_us.htm which is a partial implementation of OSEK-VDX on a PIC
  10. M

    Is it possible to create an array of 1000 elements(16bit) in CCSC?

    Re: 16bit DATA TABLE If CCSC has a limit on the number of array elements, perhaps you could use a two dimentional array. something like int16 mybuffer[10][100]; #define getValue(x) (mybuffer[x/100][x%100])
  11. M

    What does SMP option in PIC MSSP module do in SPI protocol?

    Re: SPI- PIC - SMP It could be for supporting different spi modes, I think they are called 00, 01, 10 and 11 from memory. However I have seen sampling point options on a lot of different stuff so I don't actually think it has to do with the spi protocol.
  12. M

    Automotive Embedded system

    A good book for you to read is https://www.amazon.com/Programming-OSEK-VDX-Environment-CD-ROM/dp/1578200814 Prpviding you are using osek stuff.
  13. M

    Problem with signal speed in a ignition controller app.

    Re: Real time app problem john2020, Most likely Gomez is right, and your floating point calculations are taking a long time to exacute. You don't have to have an ICE to find the problem, you could simulate the code in a simulator or trace the assembly through your ISR by hand (not fun)...
  14. M

    Help me with stacks: addition and multiplication functions

    Re: Help With Stacks mhamini, I think we need a bit more infomation on your problem to help you. What system are you using PC, Uc..etc What languge are you using? C, C++, Java ..etc What exactly does your program do, explain, algorithm, or code please. What is wrong with the result ? how does...
  15. M

    How to interface PC serial with Java program?

    Re: Serial to Java programs iscom I just wrote a serial Java program. The sun Comms API is a bit crap and Serial ports are not supported on all platforms. However you can download a third-party one free from www.rxtx.org It is reccomended all over the web, and it worked fine for me (using...

Part and Inventory Search

Back
Top