Sascha Schade

Results 25 comments of Sascha Schade

> Well, the typical way would be to group the test into test suites I'd like first to convert the runner templates to Jinja2 templates, so that the iterations are...

I ran a unittest on STM32L4 Nucleo board (after disabling one test). Unittests (May 14 2017, 15:47:59) FAIL: bmp085_test:192 : true == false FAIL: bmp085_test:193 : true == false FAIL:...

Finally that's the result on an Nucleo L476RG board Unittests (May 14 2017, 18:50:53) Machine: usrs-MacBook-Pro.local User: usr Os: Mac 10.11.6 (x86_64) Compiler: arm-none-eabi-g++ (GNU Tools for ARM Embedded Processors...

## Automatically running unittest on ST Nucleo L476RG using Docker 1. Connect a ST Nucleo L476RG board to your computer. 1. Fire up a serial terminal to the VCP of...

Thanks, great to hear that. Finishing something for the 2017q2 release was my goal ... after some time of inactivity. Were you able to reproduce it? BTW, I won't be...

Added `print(ex.clsException)` and got ``` System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.ArgumentException: Incorrect number of arguments supplied for call to method 'Void _Scripting_(System.Object[], System.Object,...

Thank you @slozier for looking into this and suggesting a solution / workaround. I can confirm that this works with the latest ABB SDK (2022.1) both with IPython 2.7.12 and...

The "simpel_example" from the project already give different results when using `msvcrt.dll`. So it is not a problem of my DLL. The code uses pointers and memset ```Python # Add...

The problem also exists on macOS ``` ➜ simple_example git:(master) ~/Dev/ironpython3/bin/Debug/net6.0/ipy t0.py Succesfully loaded the system C library from "/usr/lib/libc.dylib" Hello from Python to C Using the C printf function...

At least this code does something expected (on macOS): ```Python import ctypes, ctypes.util path_libc = ctypes.util.find_library("c") libc = ctypes.CDLL(path_libc) x = ctypes.create_string_buffer(10) z = libc.memset(x, ctypes.c_char(b'X'), 5) p = ctypes.addressof(x)...