Tag: c
-
Relating C++ move semantics to python objects
I have been learning lately about C++11 move semantics, originally being a C programmer who is concerned with the performance it was very interesting to explore such an important optimization feature. I had to go through many articles explaining rvalues, lvalues and the && operator. I believe you still need to learn these topics to…
-
Serial Communication with FTDI D2xx API on Windows
I was performing some testing on the FTDI throughput and I wrote this simple program that measures the throughput of FTDI chip if you connect its Rx pin to the Tx pin. You are free to use it for any application with FTDI, it proved to be actually faster than using Windows VCP API but remember you…