Windows error 0x00001100, 4352

Detailed Error Information

REMOTE_STORAGE_MEDIA_ERROR[1]

MessageThe remote storage service encountered a media error.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80071100.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code4352 (0x1100)

Questions

3votes
3answers

App Crash, no idea why

I trying to figure out why my App crashes sometimes on costumers devices. It doesnt matter if the device is jailbreaked or not. My App is from the AppStore. The other crashlogs are nearly the same although their crashed threads are different. Hardware Model: iPhone3,1 Process: [the APP] [296] Path: [...] read more
iphone
crash
crash-reports
2votes
1answer

Control AMIS-30543 with STM32F030R8 via SPI

I'm attempting to get my STM32 board to control a stepper motor (using an AMIS-30543 driver, 26M024B2B stepper motor) using SPI. I'm using Keil uVision 5 and taking a bare-metal approach in C. My problem is that the motor is not spinning and I'm unsure where the error(s) are hiding. [...] read more
c
embedded
stm32
bare-metal
cmsis
1vote
1answer

Copying bytes of array of uint_32 to unsigned char

I am trying to copy the bytes of state to charstate using memcpy uint32_t state[3] = {0x00000300, 0x00001100, 0x00022200}; unsigned char charstate[1420]; memcpy(charstate, (unsigned char *)state, sizeof(uint32_t)*3); printf("charstate: %s", charstate); But the printf sentence does not return anything. Could you help me to copy this state array to charstate, please? read more
c
1vote
1answer

UART Communication Between STM32F03 and ESP-8266-01

I'm attempting to get a smartphone app to communicate with an MCU (STM32F030R8). The step I'm currently on is getting the WiFi module to talk with the MCU. I'm able use the AT firmware to configure the ESP when using an Arduino Uno/PC terminal, but want to essentially do the [...] read more
c
stm32
esp8266
cmsis
0votes
1answer

EndsWith SQL query for VARBINARY(MAX) FILESTREAM columns

Currently I have two SQL query proposals which call DATALENGTH on the same VARBINARY column more than once, due to conditions in the WHERE clause. Do these multiple calls to DATALENGTH in the same query interfere in the performance, or can the result of the DATALENGTH calculation be optimized/cached by [...] read more
sql
sql-server
varbinary
sqlfilestream
datalength
0votes
1answer

Passing binary data from C to Python using "Extending Python with C"

It is possible to pass binary data from C to Python. For example it is possible to pass the bytes of state to Python?. Maybe using some of these functions https://docs.python.org/3/c-api/bytes.html? uint32_t state[3] = {0x00000300, 0x00001100, 0x00022200}; unsigned char charstate[1420]; memcpy(charstate, (unsigned char *)state, sizeof(uint32_t)*3); printf("charstate: %s", charstate); return PyBytes_FromString(charstate); [...] read more
python
c
0votes
1answer

Is it safe to use WM_COPYDATA between 64-and 32-bit (WOW64) apps?

There is a good SO Q/A session on the general use of WM_COPYDATA messages here, and a 'discussion' about whether or not this will work between apps of different 32/64-bitness here. However, the latter seems to be focussed on possible misuse of the 'data pointer' being passed. So, I'm raising [...] read more
winapi
wow64
wm-copydata
0votes
1answer

ld linker script, mark section RW

I do not understand why my linker script is not working as expected, I am compiling my assembly code using nasm -f elf64 file.asm and later I link it using my custom linker script ld -o file.elf64 -T linker_script.lds file.o without linker script I can execute it, but with the [...] read more
assembly
linker
ld
0votes
4answers

C++: Finding out how my computer stores bytes

Got this assignment where we are going to check how our computers store bytes and so on and I can't really grasp how to get the correct answer, but the code pretty much explains how I am thinking. Thanks in advance. #include <iostream> using namespace std; union hexNumber{ signed short [...] read more
c++
byte
endianness
signed
short
-1votes
1answer

Passing uint32_t array to Python using Python.h

I am trying to construct a module for python in C. The module has several lines and methods, but one of the most important is to pass, efficiently, the integer representation of the concatenation of a uint32_t array to python. For example, from code below { uint32_t state[3] = {0x00000300, [...] read more
python
c
stdint

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0