Visual Studio 2008
For 64 bit:
C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\Code\1033\Class.zip
For 32 bit:
C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\Code\1033\Class.zip
Visual Studio 2010
For 64 bit:
C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ItemTemplates\CSharp\Code\1033\Class.zip
For 32 bit:
C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\ItemTemplates\CSharp\Code\1033\Class.zip
- Visual Studio 2008
64-bit
cd C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\
32-bit
cd C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\
Visual Studio 2010
64-bit
cd C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\
32-bit
cd C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\
- Run this command:
devenv.exe /installvstemplates
posted by admin at 4:09 am
Make baseimage:
———————
follow instruction:
http://www.angstrom-distribution.org/demo/beagleboard
– make partitions (mkcard.txt)
– copy over MLO and uboot
– untar ext filesystem
– copy over uImage (g-ether to fix OTG crash)
start and burn to nand:
mmcinit
mmc init
fatload mmc 082000000 MLO
nand unlock
nand ecc hw
nandecc hw
nand erase 0 80000
nand write 82000000 0 20000
nand write 82000000 20000 20000
nand write 82000000 40000 20000
nand write 82000000 60000 20000
fatload mmc 0 0x80200000 u-boot.bin
nand unlock
nand ecc sw
nandecc sw
nand erase 80000 160000
nand write 0x80200000 80000 160000
Fix Networking:
——————-
posted by admin at 9:11 am
1. Received a RevC4 beagleboard from sparkfun.com
http://elinux.org/BeagleBoard#Manual is a very good source for all kind of information
2. Connect the beagleboard:
– HDMI (monitor)
– OTG port via MiniB to powered USB hub
-> orange picture on the monitor (which seems to be normal for RevC4 boards)
3. Finally got myself a AT/Everex cable from an old PC and wired it up:
Beagleboard – AT/Everex (red marked size of the cable -> pin 1) – null modem cable – Serial2Usb (UC-232A) – Notebook
Hyperterminal on the COM-port of the Serial2Usb-adapter, 115200,8bit,None,1bit,None and enjoy the booting process
4. Burn an Angstrom Image following (http://beagleboard.org/demo/angstrom)
Download dd for windows
dd –list
dd if=angstrom-demo-20080917.img of=\\?\Device\HarddiskX\Partition0 bs=1M –progress
Note: to fix the USB Host not recognising any devices use a newer uboot.bin and a newer uImage from http://www.angstrom-distribution.org/demo/beagleboard) and to fix the HDMI use the omapfb.videomode below)
configure the uboot:
setenv bootargs ‘console=ttyS2,115200n8 colsole=tty0 root=/dev/mmcblk0p2 rw rootfstype=ext3 rootwait omapfb.vram=0:4M,1:4M omapfb.mode=dvi:hd720-16@60’
setenv bootcmd ‘mmcinit;fatload mmc 0 84000000 uImage;bootm 84000000’
saveenv
4a. Linux alternative:
download uboot, uImage and rootfs from http://www.angstrom-distribution.org/demo/beagleboard
use gparted to make 100mb fat32 partition and an ext3 partition with rest of diskspace
cp uImage and uImage to fat partion and untar the rootfs to ext3 partition
setup env same way as in 4.
fix route after starting Angstrom : route add default gw 192.168.10.1 eth0
mkdir /media/content
opkg -force-overwrite install apache2
wget http://www.dse.nl/~meulenbr/james/james-install (and install james)
TBD: rt3070 (1737:0077) Linksys wirelss
5. Install Ubuntu 9.10 on vmware player machine
– use e1000 as network device
6. follow http://elinux.org/BeagleBoardUbuntu
7. use openembedded to build image
http://wiki.openembedded.net/index.php/OEandYourDistro (requirements)
http://www.angstrom-distribution.org/building-angstrom
use the image from OE/angstrom-dev/deploy/glibc/images/beagleboard (and use the new uboot from above to fix Rev C4 issue)
build clutter following http://groups.google.com/group/beagleboard/browse_thread/thread/97a6ba8e7b6c49db
also build and copy devmem2
posted by admin at 11:02 am
Scan / Notify Files:
FileSystemWatcher (needs new kernel)
posted by admin at 9:06 am
posted by admin at 2:11 am
lsusb (cat /proc/bus/usb/devices)
-> Vendor/ProdID
-> Cfg/If/Alt/Ad
ret = libusb_init(NULL);
libusb_set_debug(NULL,3);
dev = libusb_open_device_with_vid_pid(NULL, Vendor, ProdID);
ret = libusb_set_configuration( dev, Cfg );
ret = libusb_claim_interface(dev,If);
ret = libusb_set_interface_alt_setting( dev, If, Alt );
ret = libusb_interrupt_transfer ( dev, … )
posted by admin at 2:36 am
Ebox Platform
Trac: AgiloForScrumPlugin
Trac on Dreamhost:
http://wiki.dreamhost.com/TracInstall
MediaCenter:
http://www.team-mediaportal.com/
posted by admin at 5:08 am
For .NET:
Reflector with Dependency Structure Matrix Plugin
Commercial:
NDepend and Lattix
posted by admin at 7:30 am
Doxygen (HTML Documentation):
C / C++ / C#
Visual Studio 2008 (Intellisense, ObjectBrowser):
.Net Languages
-> use the following features to ensure working of both systems:
Comment Blocks:
Single Line (preferred for datatype documentations, since better supported by VS)
///////////////////////////////////////////////
/// … text …
///////////////////////////////////////////////
Multiple Line (for Pages, Directory, Module documentation)
/**********************************************
\page
… text text text text text text text
text text text text text text text
text text text text text …
**********************************************/
Use JAVADOC_AUTOBRIEF
Mandatory Commands:
Optional Commands:
<remarks>, <summary>, <example>, <exception>, <param>, <permission>, <returns>, <seealso>, and <include>.
<code>, <list>, <listheader>, <item>, <term>, <description>, <para>, <paramref>, <see>, and <value>.
\page
\file
\namespace
posted by admin at 7:13 am