Questions tagged [bsp]

In embedded systems, a board support package (BSP) is implementation specific support code for a given (device motherboard) board that conforms to a given operating system. It is commonly built with a bootloader that contains the minimal device support to load the operating system and device drivers for all the devices on the board.

100 questions
0
votes
2 answers

Android CTS - No available device matching the config's requirements

I am trying to do android compatibility test on SC20 EVb by using cts-tradefed and while trying run cts test by using cts run --plan CTS, it shows this log: No available device matching the config's requirements for cmd id 1. What to do?
richucj
  • 1
  • 1
  • 2
0
votes
1 answer

Reading GPIO in bootloader

I am running Windows CE on an IMx6 chip. I am trying to read button states during the bootloader stages to set the device to a different state. Is there a GPIO library that I can generally call anywhere during bootloader? I have been trying to call…
Angelo Charl
  • 347
  • 4
  • 15
0
votes
1 answer

File collision error building IoT Core image with modified config.txt file

I am building a Windows 10 IoT Core image for a Raspberry Pi 3B and it needs to contain a custom config.txt file at the root of the EFIESP partition. I have edited the MyApp.FilesAndRegKeys.wm.xml file to include the edited config.txt file like…
Coder6841
  • 1,171
  • 2
  • 13
  • 24
0
votes
1 answer

Issue when integrating different bsp-layers on a single bblayers.conf

I am trying to integrate several BSP-layers for different platforms on a single Yocto repository to build a Linux Yocto-based distro for all those platforms easily. The idea is maintaining a single bblayers.conf with all the layers available, set…
aicastell
  • 2,182
  • 2
  • 21
  • 33
0
votes
1 answer

DragonBoard 410c create custom Windows 10 IoT Core image

After reading the MSDN docs about creating a custom Image for Windows 10 IoT Core, I'm totally overwhelmed. I installed the required tools, got the BSP for the DragonBoard 410c and started step by step from the docs I was very unseccessful, the…
andy
  • 509
  • 1
  • 8
  • 21
0
votes
0 answers

Yocto do_kernel_metadata failed with custom BSP

I try to make a custom BSP for my board (a custom beaglebone). It's my first time with yocto. I read many documentation and tutorials. But I can't solve my problem. I've been using yocto-bsp when I've got a problem with the task…
Initerworker
  • 139
  • 1
  • 12
0
votes
1 answer

Where can I find "MXC Video For Linux Camera" in buildroot menuconfig (i.MX6Q)?

Environment I'm using Buildroot 'imx6-sabresd_qt5_defconfig', and adding 'openssh', 'gdb', some 'gstreamer' for playing video. My board is i.MX6Q. I add ov5640 as module and use this command to install ov5640 module insmod…
Julia Ding
  • 173
  • 16
0
votes
1 answer

QT5 requires OpenGL desktop on i.Mx6 (buildroot)

I'm using 'imx6-sabresd_qt5_defconfig' on i.Mx6 (buildroot) and qt app is QT box demo. When I run app, it show this error: error: This example requires Qt to be configured with -opengl desktop How to fix this? Do I need to add something in…
Julia Ding
  • 173
  • 16
0
votes
1 answer

Constructing a KD-Tree from a cube-based world

This question should be pretty easy to answer and I have a feeling there's probably a lot of documentation on the subject but I couldn't find anything in my searches so I presume I'm searching for the wrong thing. Let's imagine I have a world of…
Fascia
  • 732
  • 6
  • 17
0
votes
0 answers

CSI-2 MIPI Interface

In my project, we have used ov5640 camera module which will transfer the captured data in serial to Toshiba bridge. Toshiba bridge will send the received data in parallel to the processor. When I was working on parallel camera, it is registered as…
Kumar
  • 1
  • 1
0
votes
3 answers

weirdest bug ever - int definition causes sigsegv. stack overflow?

I'm using the BSPlib and when adding a simple definition of "int i" on the function running on multiple threads (along with many other) I get a message like "Process 2 caught SIGNAL 11 Segmantation fault ". it's important to note that I checked alot…
tomermes
  • 22,950
  • 16
  • 43
  • 67
0
votes
1 answer

how do i include BSP library in a c++ program?

im trying to compile c++ parellel program using BSPlib , on a platfrom that has bsp compile ( bsp++). Nevertheless , it doesnt seem to recognize any of the bsp functions. what should i do in order to include / import/ tell the compiler that im using…
RanZilber
  • 1,840
  • 4
  • 31
  • 42
0
votes
0 answers

Port RTOS package to embedded linux

I'm new to RTOS and Embedded Linux. As I described in the title, if I want to port Zephyr's bluetooth package to OpenWrt, what are the necessary steps I have to do? Thanks in advance.
Tony Lin
  • 765
  • 3
  • 15
  • 35
0
votes
1 answer

Why isn't my updated pointer driver included in new built VxWorks BootROM?

I've taken over a running VxWorks-based project (an embedded system) which works fine for long time. Now, I was assigned to update relative codes to the new touch panel. After tracing its codes enough, I know the codes I must update is on the…
0
votes
2 answers

BCR exporting images from MSSQL server

I'm trying to export images from SQL server using bcr, I am also wondering how to do it so I decided to try it by myself. So my question is how can I export images from mssql succesfully, and what I did so far is described here: On the command line…
user6067265