Questions tagged [dmp]

Digital Motion Processing™ is an engine that offloads complex motion fusion, sensor timing synchronization and gesture detection.

DMP™ is the abbreviation of Digital Motion Processing™.
The purpose of the DMP™ is to offload both timing requirements and processing power from the host processor.
Typically, motion processing algorithms should be run at a high rate, often around 200Hz, in order to provide accurate results with low latency.
This is required even if the application updates at a much lower rate for example, a low power user interface may update as slowly as 5Hz, but the motion processing should still run at 200Hz.
The DMP™ can be used as a tool in order to minimize power, simplify timing, simplify the software architecture, and save valuable MIPS on the host processor for use in the application.

62 questions
7
votes
1 answer

analyse c# application dump file

I wrote a C# application that is running well on XP but freeze on Vista/7. I got an application dump (dmp file) for analysing the problem. I don't understand how to get the stack trace in C# (as I have of course the source code). I loaded symbols…
Pierre
  • 139
  • 2
  • 8
5
votes
2 answers

How do I make a '.cmdtree' window dock at startup in WinDbg?

I have followed Tess Ferrandez' blog for setting up a custom theme in WinDbg. I have also started launching WinDbg automatically with -c ".cmdtree c:\mycmdtree.txt" This correctly opens my cmdtree file as a commands window, but I can't get it to…
pj4533
  • 1,701
  • 4
  • 17
  • 38
4
votes
2 answers

error in activing set-device-owner using adb

i want to set device owner and active on my application using adb and dpm . i want to use startlocktask(). for creating kiosk application. but when i run this line in my commandline: ./adb shell dpm set-device-owner…
iman kazemayni
  • 1,255
  • 1
  • 19
  • 20
3
votes
3 answers

How to Import Oracle .DMP file into SQL Server?

I have a .dmp file (oracle data) and I have to import this file into SQL Server 2008 R2. I tried google but get no clear solution. Oracle is on other machine and SQL Server is on other machine. This .DMP file has only tables and data only nothing…
Amit
  • 21,570
  • 27
  • 74
  • 94
3
votes
0 answers

Extract a call stack from a Windows minidump on linux

I'm writing a crash report system for a medium size application. The applications runs on Windows and generates dmp files when crashing but the crash report system is currently running on Linux. If I open the minidump in Visual Studio with the…
Samuel Leberto
  • 117
  • 1
  • 5
3
votes
1 answer

Force WinDbg to load pdb using `.reload` is not working

I have a dump collected for my executable App.exe: App.DMP Unfortunately, we didn't save the .pdb for this specific build, but since we have build number we could rebuild the same version and reconstruct the .pdb This didn't help and I couldn't load…
Mugen
  • 8,301
  • 10
  • 62
  • 140
3
votes
2 answers

Python Django migrate_schemas --shared TypeError: hasattr(): attribute name must be string upon

I am trying to create a python django-mako-plus project with a django-tenant-schema. I followed the instructions exactly as the tutorial here: https://django-tenant-schemas.readthedocs.org/en/latest/install.html#basic-settings However, when I run…
2
votes
2 answers

Symbol path for WinDbg

My pc underwent an automatic restart and when I checked event viewer, I found the bug check error. I found the location of the .dmp file created. I then downloaded WinDbg and understand the first thing I have to do is set the symbol path and then…
user7960042
2
votes
0 answers

How to read data from an MPU-9150 9DOF IMU from a Raspberry Pi?

I'm trying to use this i2cdevlib library to read from the digital motion processor on an MPU-9150 9DOF IMU from a Raspberry Pi 3 via I2C. I'm using the following C++ code: using namespace std; #include #include #include…
Cerin
  • 60,957
  • 96
  • 316
  • 522
2
votes
1 answer

What do the 'size' numbers mean in the windbg !heap output?

I see output like this in my DMP file: Heap entries for Segment00 in Heap 00150000 00150640: 00640 . 00040 [01] - busy (40) 00150680: 00040 . 01808 [01] - busy (1800) 00151e88: 01808 . 00210 [01] - busy (208) 00152098: 00210 . 00228…
pj4533
  • 1,701
  • 4
  • 17
  • 38
2
votes
3 answers

dmp file in Java?

I know one can dump a .dmp file from a C++ project. This dmp file can be openned by the Visual Studio which is VERY useful because then you can navigate the call stack looking in variables values. Does this mechanism exist for JVM too?
user1028741
  • 2,745
  • 6
  • 34
  • 68
2
votes
2 answers

Oracle dump (.dmp) file format

I am wondering about how is the internal format of a .dmp file (dump file, or backup and restoration file) used by Oracle RBMS. Does it follow any standard? Is it optimized in any way? Thanks. Edited: Oracle version: 11g
Luis Andrés García
  • 5,852
  • 10
  • 43
  • 57
2
votes
2 answers

.NET Memory leak analysis

I'm trying to find a memory leak in one of our applications, however it's quite elusive. I've analyzed the program with Ants memory profiler and it found the leak to be in unmanaged code, for which Ants memory profiler is not suited:…
user968698
  • 429
  • 3
  • 14
2
votes
1 answer

Import more than one dump file in oracle

I am using ORACLE 11g ORCL database. Can We import more than one dump file[for different users] at a time[using multiple command prompt] in Oracle database? Please suggest me, the procedure if possible the same.. Thanks in Advance
Venkat
  • 20,802
  • 26
  • 75
  • 84
1
vote
0 answers

What does the MPU6050s DMP initialization data mean?

I was wondering what are those 3kB of hex data loaded to DMP on initialization. I know they are supposed to be some kind of “program” for DMP, but what do they do? Is there a way to get assembly version, and if so, is there a way to make my own? Or,…
1
2 3 4 5