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 LBdgWgt

  1. LBdgWgt

    Problem in macro value generation

    found the solution: #define XTAL 7500000UL #define PLL_MULTIPLIER 16UL #define CLOCK_POSTSCALER 1UL #define F_OSC ((XTAL * PLL_MULTIPLIER)/CLOCK_POSTSCALER) #define FCY (F_OSC/4UL) #define UART_BAUD 9600UL #define UART1_BRG...
  2. LBdgWgt

    Problem in macro value generation

    Hi all, i am using C30 compiler for dsPIC30 (i think it basically gcc right?) i have a problem as i tried to make automatic macro value generation for UART baud rate register. #define XTAL 7500000U #define PLL_MULTIPLIER 8U #define CLOCK_POSTSCALER 1U #define F_OSC...
  3. LBdgWgt

    LPC2292/4 Reset on CAN interrupt

    i found the cause of the problem. it is called "spurious interrupt". i didnt set the default interrupt vector address register. now it is ok :) cheers,
  4. LBdgWgt

    what is header files in embedded c programming

    hi, a little explenation: https://en.wikipedia.org/wiki/Header_file in short, ehader file is very useful to make modular development, where the applicaiton is divided in to many source codes modules regards,
  5. LBdgWgt

    LPC2292/4 Reset on CAN interrupt

    Hi all, i am using phytec-LPC2294 board. I met a very stranget behaviour. With my application, everytime there is an error occur on CAN module which generate an interrupt, the program goes back to reset. i am having problem also to find out the cause because when i put break points in the isr...
  6. LBdgWgt

    reference for understanding arm-gcc output

    hi all, i am using a ar-gcc compiler for my microcontroller board with LPC2104. i want to examine something in the output files (.lst, .map, etc.). i havent found any good reference to understand the content of the file. yould someon give me a hint? thanks in advance
  7. LBdgWgt

    Need information about dynamic allocation in C++

    Re: help C++ A little google will help you actually: https://www.cplusplus.com/doc/tutorial/dynamic.html
  8. LBdgWgt

    difference between overloading and polymorphism

    Hi all, I am quite used to program in C, but for OOP i dont have the concept quite deep yet. I have (maybe) a simple question: what is the difference between (function) overloading concept in C and polymorphism in C++? as i noticed, they have almost the same purposes: to provide single...
  9. LBdgWgt

    i need uc linux emulator under windows

    Hi, i dont know whether it works with uclinux, but there is a linux emulator called qemu. maybe you want to check it out. https://www.qemu.org/ regards,
  10. LBdgWgt

    embedded Linux(x86) development--distro modification or LFS?

    Re: embedded Linux(x86) development--distro modification or Hi, building the Linux system from scratch is not impossible. I just finishing a project which is almost the same specification. I did it in 3 months with a very low experience in Linux as I started the project. i could give you the...
  11. LBdgWgt

    Which microcontroller is better PIC or AVR?

    Re: PIC or AVR Hi, i think it doesnt make anysense to have long discussion about which microcontroller is better in general. it is like asking "which football team is the best?" (you can see my avatar :D) and people will say what their own opinion. Personally i used to work a lot with AVR, but...
  12. LBdgWgt

    what does these words mean & what should i do?

    i am not sure about that, i am also a newbee in linux. but it seems that you have to use C type shell (csh or tcsh) . you can check your shell using the following command: ps -p $$
  13. LBdgWgt

    How to know in which shell you are in?

    hope this helps: http://publib.boulder.ibm.com/infocenter/rbhelp/v6r3/index.jsp?topic=/com.ibm.redbrick.doc6.3/instlux/instlux13.htm **broken link removed** regards,
  14. LBdgWgt

    reference for building x window system

    I am using the X11R6.7.0. and I am planning to do: - make the shadow directory build using lndir command - configure the host.def file - build the X windows: make CROSSCOMPILEDIR=<PATH_TO_CROSS_COMPILER> World - install to the CF card (supposed it is mounted on /mnt/cf): make install...
  15. LBdgWgt

    Porting linux to MCS-51

    wow.. never heard of that linux can be ported to MCS51.. i dont know about FreeDOS.. isnt linux much much too big to be put in MCS51? if you look RTOS for MCS51 try to google it. but i dont think it is possible to port linux there. the smallest linux i ever heard for uC is uClinux. regards,

Part and Inventory Search

Back
Top