Windows error 0x80010133, -2147417805

Detailed Error Information

CO_E_SETSERLHNDLFAILED[1]

MessageUnable to set or reset a serialization handle
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode1 (0x001)
NameFACILITY_RPC[2][1]
DescriptionThe source of the error code is an RPC subsystem.[2][1]
Error Code307 (0x0133)

Questions

0votes
0answers

External interrupt Nucleo f072rb

I'm having unsolvable problems with my Nucleo f072rb. I'm trying to use push-button as an external interrupt. #include "mbed.h" #include TextLCD.h TextLCD lcd (PC_8, PB_8, PC_6, PC_5, PA_12, PA_11); //rs, e, d4-d7 Timer debounce; InterruptIn tipkalo(PB_5); void hwprekid(void); void hwprekid() { if(debounce.read_ms()>200) lcd.printf("Temp is:"); debounce.reset(); } int main() { debounce.start(); [...] read more
stm32
interrupt
mbed
nucleo
0votes
2answers

X_NUCLEO_IHM03A1 in Mbed Studio?

I want to use Mbed Studio for writing program for X_NUCLEO_IHM03A1 with NUCLEO-L476RG board using official library and example for 1 motor. Library as I understood supports only mbed os 2. In the same time Mbed Studio can work only with mbed os 5. After compiling project my device rebooting [...] read more
mbed
0votes
1answer

Running Libsodium on Mbed (Nucleo L476RG) - Mutex not allowed in ISR context

I'm trying to run some code that uses libsodium on an Mbed board. While just including the library and running sodium_init() the following error is thrown on mbed sterm: ++ MbedOS Error Info ++ Error Status: 0x80010133 Code: 307 Module: 1 Error Message: Mutex: 0x200027EC, Not allowed in ISR context [...] read more
arm
mbed
libsodium
isr
nucleo

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