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 h.galeh

  1. h.galeh

    configure I2S on LPC2368 kit

    use IAR it is an advanced IDE select view->register from menu
  2. h.galeh

    configure I2S on LPC2368 kit

    this is a bus specification from NXP . it consists of a description of I2S , I hope it, be a good guide for you **broken link removed**
  3. h.galeh

    configure I2S on LPC2368 kit

    perhaps this example can help you. (KEIL version) easily adopt the library file that you need . use and enjoy! main function is located in I2Stest.c check it out
  4. h.galeh

    install uClinux on lpc17xx

    I want to get started with uclinux. but I didn't find any resource how to get started . how to install . how to write program ? please introduce me a book,ebook or atleast a link .
  5. h.galeh

    best operating system for lpc17xx

    I want to set an os for my mcu it is lpc1768 what is the best choice you think?
  6. h.galeh

    using SysTick_Handler in an interrupt

    unfortunately Interrupts occur very bad . I use gpio0.0 interrupt to switch led's on and off but switching time is so little . the interrupt occurs multiple times once I connect wire to ground to solve it I used for(0-> 1000000) but it didn't wait resolve the problem I used SysTick_Handler too ...
  7. h.galeh

    make programming easy by using structures

    most of the times we need to work with specified bits of registers . most of the times I see in examples the use of masking its an unreadable way . now see the form below: masking for setting GPIO2.1 as output LPC_GPIO2->FIODIR |= 0x2; equivalent of the form above with structures #include...
  8. h.galeh

    lpc1768 adc 'done' bit never set's

    main routine #include "lpc17xx.h" #include "gpio.h" uint32_t m; void main(){ SystemInit(); SystemCoreClockUpdate(); while(1){ init_adc(0); m=get_adc(0); } } adc.c #include "gpio.h" enumPending Int0_Stat(){ return GPIOINT->P0Int; } enumPending Int2_Stat(){ return...
  9. h.galeh

    adc convertion in lpc1768 is not really correct

    I use adc to convert a potentiometer's voltage to equivalent digital data. but here is a problem . it is always changing its value(debug mode) while I really didn't change volume whats the problem? how can we make it more precise
  10. h.galeh

    lpc1768 adc 'done' bit never set's

    I am working with adc pripherial of lpc1768(cortexm3) we read in datasheet that after convertion is done. the 'done' bit of adgdr will set to 1 but there is no 'setting' when convertion is finished
  11. h.galeh

    overclocking lpc17xx

    i used a 130MHz clock rate for cpu clock but its usual operation done. whats wrong? I overclocked adc too . nothing fault
  12. h.galeh

    [SOLVED] developing a library for gpio lpc1768

    it is not necessary to make a library for it since CMSIS is a complete set of codes available for configuring pripherials to use it go to examples of IAR or keil refer to CMSIS folder folder named "driver" is its library there. you can freely add it anywhere inside your code
  13. h.galeh

    interrupt handler - iar - cortexm3

    I want to have an interrupt routine/function for my MCU my compiler is IAR my micro is lpc1768 suppose we enabled interrupts formerly write a program which handles External interrupt or reset interrupt
  14. h.galeh

    [SOLVED] deep power down - lpc1768 - not programmable

    I programmed my micro so that it turns "deep power down" mode immediately after startup now I cant debug it via jtag . I CANT even program it or erase its memory with jtag I didnt examine ISP but suppose its not going to work too no how can I erase its memory? - - - Updated - - - fortunately...
  15. h.galeh

    [SOLVED] developing a library for gpio lpc1768

    I am defining a library for gpio easeing work . so that you can program micro as easy as possible without hardware challenge but its macros has problems please help to make it #ifndef __GPIO_H #define __GPIO_H ////////////////////////////////////////////////////////////////// #define PORT0 1...

Part and Inventory Search

Back
Top