incoherentmusings.wordpress.com
Best practices for obtaining GCOV code coverage for C/C++ application – Incoherent Musings
https://incoherentmusings.wordpress.com/2015/12/10/best-practices-for-obtaining-gcov-code-coverage-for-cc-application
Collection of random everyday thoughts. Best practices for obtaining GCOV code coverage for C/C application. Need to instrument C/C code. Work with standard GCC 4.4 compiler and the lcov-1.12 (These are the versions I’m using but other versions may work). Target system where the binary is executed is different from the system where the source is compiled. There are multiple versions of target devices where different code paths get executed. The extra-define switch of -DTARGET CODE COVERAGE is to enable s...
incoherentmusings.wordpress.com
How to photograph Solvang (via California Photo Scout) – Incoherent Musings
https://incoherentmusings.wordpress.com/2011/04/22/how-to-photograph-solvang-via-california-photo-scout
Collection of random everyday thoughts. How to photograph Solvang (via California Photo Scout). Via California Photo Scout. April 22, 2011. April 22, 2011. Frenchman Lake and Pyramid Lake, 15th -17th Jan 2010. Best practices for obtaining GCOV code coverage for C/C application. Follow me on Twitter. Caño Negro National Wildlife Refuge. Father;ann;landers;poetry. La Fortuna Costa Rica. Rincón de la Vieja Volcano National Park. The Chronicles of Narnia. Follow Incoherent Musings on WordPress.com.
incoherentmusings.wordpress.com
C++ Utility function for converting bytes to higher units – Incoherent Musings
https://incoherentmusings.wordpress.com/2015/12/17/c-utility-function-for-converting-bytes-to-higher-units
Collection of random everyday thoughts. C Utility function for converting bytes to higher units. Sometimes you need a handy function to convert number of bytes to a human readable size. I wrote a C version but found better logic on StackOverflow but implemented in C so decided to implement a similar function in C . December 17, 2015. December 17, 2015. Best practices for obtaining GCOV code coverage for C/C application. Setting up VNC server on Raspberry Pi to autostart on reboot. Follow me on Twitter.
incoherentmusings.wordpress.com
Setting up VNC server on Raspberry Pi to autostart on reboot – Incoherent Musings
https://incoherentmusings.wordpress.com/2016/04/25/setting-up-vnc-server-on-raspberry-pi-to-autostart-on-reboot
Collection of random everyday thoughts. Setting up VNC server on Raspberry Pi to autostart on reboot. First note down the IP address of your Pi. Make sure your packages are updated to latest version. Sudo apt-get update sudo apt-get install tightvncserver. Create a vnc server service description file. Sudo vi /etc/init.d/tightvncserver. And the following code:. If lines 2-11 are not added above you get the following error:. Modify the permissions on the file:. Setup a password for vnc:. Reference: http:/...