-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (84 loc) · 2.65 KB
/
index.html
File metadata and controls
92 lines (84 loc) · 2.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>Studs</title>
<!--
<meta name='viewport' content='initial-scale=1.0' />
<meta name='description' content='' />
-->
<link href='https://fonts.googleapis.com/css?family=Roboto:700,300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Mono:700,300' rel='stylesheet' type='text/css'>
<link rel='stylesheet' type='text/css' href='style.css' />
</head>
<body>
<!-- Masthead -->
<div id='masthead'>
<header>
<a href='doc/GettingStarted.html'>Getting Started</a>
<a href='doc/AboutStuds.html'>Documentation</a>
<a href='tut/Tutorials.html'>Tutorials</a>
<a href='api/studs/index.html'>API</a>
<a href='https://github.com/studsio'><img src='img/github.svg' width='22' height'22'/>GitHub</a>
</header>
<div>
<img src='img/studs_logo.svg' width='250px' alt='Studs' text='Studs'/>
<h1>Studs</h1>
<h2>A <a href='http://fantom.org/'>Fantom</a> framework for creating rock solid embedded IoT applications</h2>
</div>
</div>
<!-- Overview -->
<div id='overview'>
<ul>
<li>Build on macOS or Linux</li>
<li>Get up and running fast</li>
<li>Target multiple hardware platforms</li>
<li>Create small images that boot in seconds</li>
<li>Reliably update software in the field</li>
<li>
<a href='doc/GettingStarted.html'>Get Started</a>
</li>
</ul>
<p>
<a href='doc/AboutStuds.html'>Documentation</a>
<a href='tut/Tutorials.html'>Tutorials</a>
<a href='https://github.com/studsio'>GitHub</a>
</p>
<div class='term'>
<div><span></span><span></span><span></span></div>
<pre>$ fan studs init hello
Init project: ~/hello [Yn]
$ cd hello
$ src/build.fan
compile [hello]
Compile [hello]
FindSourceFiles [1 files]
WritePod [file:~/hello/lib/fan/hello.pod]
BUILD SUCCESS [34ms]!
$ fan studs asm
Assemble [rpi3-1.4]
Downloading rpi3 system... 100%
Install rpi3 system...
Build linux-armv6-vfp-hflt jre [compact1]...
Stage rootfs...
Merge rootfs...
Assemble firmware image...
Signing firmware image...
Release:
~/hello/studs/releases/hello-1.0.0-rpi3.fw [25MB]
ASM SUCCESS [24.77sec]!
$ fan studs burn
Use 15GB memory card found at /dev/rdisk3? [Yn]
Burning hello-1.0.0-rpi3.fw to /dev/rdisk3...
|====================================| 100% (25 / 25) MB
Success!
Elapsed time: 2.034s
$ fan studs push 192.168.1.100
Pushing hello-1.0.0-rpi3.fw to 192.168.1.100...
Firmware upload successful. Now rebooting device to apply.</pre>
</div>
</div>
<!-- Footer -->
<footer>
</footer>
</body>
</html>