0%

Scrum Team

  • Scrum Product Owner
  • Scrum Master
  • Development Team Members

Scrum Product Owner

  • Maximize the value of the product and the Development Team
  • Sole person responsible for managing the order and prioritizing the Product Backlog
  • Must be empowered to make decisions about the product
  • Tell Development Team what to do! (but NOT how to do it!)
    Read more »

Mercurial SCM

http://mercurial.selenic.com/

Mercurial SCM - Guide

http://mercurial.selenic.com/guide

1
sudo apt-get install mercurial

TortoiseHg

http://tortoisehg.bitbucket.org/download/index.html

1
2
3
sudo add-apt-repository ppa:tortoisehg-ppa/releases
sudo apt-get update
sudo apt-get install tortoisehg

hg clone using ssh

1
hg clone ssh://username@username.xyzabc.com//path/to/projectname projectname

How to Take Screenshot from Embedded Linux FrameBuffer?

  1. On the target device:

    1
    TARGET$ cat /dev/fb0 > myImage
  2. Copy the raw image, myImage, to the host and run the following command:

    1
    HOST$ avconv -vframes 1 -f rawvideo -pix_fmt rgb565le -s 800x480 -i myImage myImage.png

    Note that rgb565le is the pixel format used on my device. You can replace it to uyvy422 if UYVY 4:2:2 is used or rgb32 if RGB32 is used.

  3. [Updates on 2020/05/23] - Use ffmpeg instead:

    1
    HOST$ sudo apt install ffmpeg
    1
    HOST$ ffmpeg -f rawvideo -pixel_format rgb32 -video_size 800x480 -i myImage myImage.png

References