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 cfant

  1. C

    Debugging embedded board-linux

    I guess that you user trying to use return value from ioremap directly. This is wrong. Please read this link: https://lwn.net/Articles/653585/.
  2. C

    autostarting linux application at boot up

    Segmentation fault, can be caused by multiple reasons. 1. you are allocating memory but you are not releasing it, so you ran out of memory, and get null pointer. 2. there is a problem with communication between your program and device driver, you are not checking for this condition, or driver...
  3. C

    Linux socket programming

    You need to provide more information. The given program must close socket after sending info to client. I guess that you need to define protocol first (what is client going to send to server, and what server should send as a response). Look at this example on how to implement multi threaded...
  4. C

    Designing a custom board for Embedded Linux and getting started

    I think that you under estimated effort for this project. So, first thing first, having kernel is not enough. You will need a bootloader, and BSP (Board support package) for your board, which implies a lot of changes needed. My suggestion would be this: select cpu which you want to use, get...
  5. C

    Alternatives to Lauterbach

    Assuming that you are using ARM and FreeRtos, here are two article about FreeRTOS awareness: https://mcuoneclipse.com/2016/10/15/freertos-kernel-awareness-with-ozone/ https://mcuoneclipse.com/2016/07/06/freertos-kernel-awareness-for-eclipse-from-nxp/ Both are using Segger J-Link (which is...
  6. C

    [SOLVED] What is best GUI tool for processors

    Can you elaborate what are you trying to do? Graphics is usually handled by X11 on ARM and X86.
  7. C

    [ARM] How to fix FatFS compilation on STM32 ?

    Have you tried to cast const BTYE * to (BYTE *)?
  8. C

    ddd used with jLinkGDBServer passing unsupported arguments

    I don't think that you can do that. JlinkGdbServer needs to be started before debugger. From ddd you need to call gdb which is cross compiled for given architecture (ARM< MIPS, X86, ...). JLinkExe is not a debugger.
  9. C

    embedded linux programming

    Embedded linux is almost same as "normal" linux. If I may suggest, start with x86 version running under vmware player. That way you can learn how to debug kernel modules (drivers). Download copy of Linux Device Drivers, Third Edition, and examples from it.
  10. C

    backing up SD card data from two partitions

    Have you tried this tool: https://computers.tutsplus.com/articles/how-to-clone-your-raspberry-pi-sd-cards-with-windows--mac-59294?
  11. C

    interface ARM controller (say STM32F4) to Internet

    STM32F4 needs a Ethernet PHY though. Otherwise you can use SPI ENCJ2860.
  12. C

    [SOLVED] STM32 Compiler and debugger

    Botha have support only for STM32. Atolic is gased on Eclipse & GNU GCC, Keil is using their own compiler. Both have free license with limit of 32K. But if you are using STM32F0, you can get free unlimited license for Keil. For STM8 you can use SDCC which is free.
  13. C

    SPIM MIPS32 simulator warning: Error: MIPS32 Rev 2 instruction is not implemented.

    If you are using gcc -march=mips32 should prevent compiler from generating mips32r2 instructions.
  14. C

    [SOLVED] How to calculate temperature value

    That is easy. Here is th example which you can get from Analog devices web site: float ADXL362_ReadTemperature(void) { unsigned char rawTempData[2] = {0, 0}; short signedTemp = 0; float tempCelsius = 0; ADXL362_GetRegisterValue(rawTempData, ADXL362_REG_TEMP_L...
  15. C

    Delphi installing problem

    Have you tried XP mode? https://windows.microsoft.com/en-us/windows7/install-and-use-windows-xp-mode-in-windows-7

Part and Inventory Search

Back
Top