ATSAME54 Config File Using Openocd embedded by blog_1buq8n - March 18, 2019April 11, 20190 Sometimes solutions are very simple. Openocd (Open On-Chip Debugger) is used on ubuntu for debugging and flashing programs to your target board. We are using SAM E54 Xplained Pro board. The problem started when we could not locate openocd config file for ATSAME54. After searching on google for a while we came to know that atsame5x.cfg we have to apply patch from openocd to get this working. As per openocd site they mentioned that support for ARM M4 series is added for microchip SAM D/E series controllers. We have downloaded patch updated openocd and after running it using following command, could not connect to board and got same error. $ openocd -f tcl/board/microchip_same54_xplained_pro.cfg Open On-Chip Debugger 0.10.0+dev-00409-g1ae106de (2019-03-18-12:24) Licensed under GNU
How To Install SVN Server On Ubuntu 18.04 LinuxAdmin by blog_1buq8n - February 6, 2019July 26, 20191 In every software project there is need for version control system. Here we will list out steps for install SVN server on Ubuntu machine. Install Apache sudo apt-get update sudo apt-get install apache2 sudo systemctl start apache2 Install Apache Subversion sudo apt-get install subversion libapache2-mod-svn sudo apachectl -M sudo a2enmod dav sudo a2enmod dav_svn sudo a2enmod authz_svnsudo service apache2 restart Create SVN Repository Most common places for Subversion repository are: /srv/svn, /usr/local/svn and /home/svn. Here we will assume /home/svn as repository sudo mkdir /home/svn Create svn repository. Here we create a repository called “IEC1000” sudo svnadmin create /home/svn/IEC1000 change ownership and permissions sudo chown -R www-data:www-data /home/svn/IEC1000/ sudo chmod -R 775 /home/svn/IEC1000 If you are using windows system use "TortoiseSVN" to create repository and add files/folders to SVN. If you are using Linux system use "rabbit SVN"