http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/fs/nffs/nffs_internals/index.html ---------------------------------------------------------------------- diff --git a/os/modules/fs/nffs/nffs_internals/index.html b/os/modules/fs/nffs/nffs_internals/index.html index 932d64a..7c4b7dd 100644 --- a/os/modules/fs/nffs/nffs_internals/index.html +++ b/os/modules/fs/nffs/nffs_internals/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> @@ -515,30 +522,30 @@ <h1 id="internals-of-nffs">Internals of nffs</h1> <h3 id="disk-structure">Disk structure</h3> <p>On disk, each area is prefixed with the following header:</p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">/** On-disk representation of an area header. */ -struct nffs_disk_area { - uint32_t nda_magic[4]; /* NFFS_AREA_MAGIC{0,1,2,3} */ - uint32_t nda_length; /* Total size of area, in bytes. */ - uint8_t nda_ver; /* Current nffs version: 0 */ - uint8_t nda_gc_seq; /* Garbage collection count. */ - uint8_t reserved8; - uint8_t nda_id; /* 0xff if scratch area. */ +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span style="color: #177500">/** On-disk representation of an area header. */</span> +<span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_disk_area</span> { + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">nda_magic</span>[<span style="color: #1C01CE">4</span>]; <span style="color: #177500">/* NFFS_AREA_MAGIC{0,1,2,3} */</span> + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">nda_length</span>; <span style="color: #177500">/* Total size of area, in bytes. */</span> + <span style="color: #A90D91">uint8_t</span> <span style="color: #000000">nda_ver</span>; <span style="color: #177500">/* Current nffs version: 0 */</span> + <span style="color: #A90D91">uint8_t</span> <span style="color: #000000">nda_gc_seq</span>; <span style="color: #177500">/* Garbage collection count. */</span> + <span style="color: #A90D91">uint8_t</span> <span style="color: #000000">reserved8</span>; + <span style="color: #A90D91">uint8_t</span> <span style="color: #000000">nda_id</span>; <span style="color: #177500">/* 0xff if scratch area. */</span> }; </pre></div> <p>Beyond its header, an area contains a sequence of disk objects, representing the contents of the file system. There are two types of objects: <em>inodes</em> and <em>data blocks</em>. An inode represents a file or directory; a data block represents part of a file's contents.</p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">/** On-disk representation of an inode (file or directory). */ -struct nffs_disk_inode { - uint32_t ndi_magic; /* NFFS_INODE_MAGIC */ - uint32_t ndi_id; /* Unique object ID. */ - uint32_t ndi_seq; /* Sequence number; greater supersedes - lesser. */ - uint32_t ndi_parent_id; /* Object ID of parent directory inode. */ - uint8_t reserved8; - uint8_t ndi_filename_len; /* Length of filename, in bytes. */ - uint16_t ndi_crc16; /* Covers rest of header and filename. */ - /* Followed by filename. */ +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span style="color: #177500">/** On-disk representation of an inode (file or directory). */</span> +<span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_disk_inode</span> { + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">ndi_magic</span>; <span style="color: #177500">/* NFFS_INODE_MAGIC */</span> + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">ndi_id</span>; <span style="color: #177500">/* Unique object ID. */</span> + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">ndi_seq</span>; <span style="color: #177500">/* Sequence number; greater supersedes</span> +<span style="color: #177500"> lesser. */</span> + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">ndi_parent_id</span>; <span style="color: #177500">/* Object ID of parent directory inode. */</span> + <span style="color: #A90D91">uint8_t</span> <span style="color: #000000">reserved8</span>; + <span style="color: #A90D91">uint8_t</span> <span style="color: #000000">ndi_filename_len</span>; <span style="color: #177500">/* Length of filename, in bytes. */</span> + <span style="color: #A90D91">uint16_t</span> <span style="color: #000000">ndi_crc16</span>; <span style="color: #177500">/* Covers rest of header and filename. */</span> + <span style="color: #177500">/* Followed by filename. */</span> }; </pre></div> @@ -548,17 +555,17 @@ struct nffs_disk_inode { <li>/ (slash character)</li> <li>\0 (NUL character)</li> </ul> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">/** On-disk representation of a data block. */ -struct nffs_disk_block { - uint32_t ndb_magic; /* NFFS_BLOCK_MAGIC */ - uint32_t ndb_id; /* Unique object ID. */ - uint32_t ndb_seq; /* Sequence number; greater supersedes lesser. */ - uint32_t ndb_inode_id; /* Object ID of owning inode. */ - uint32_t ndb_prev_id; /* Object ID of previous block in file; - NFFS_ID_NONE if this is the first block. */ - uint16_t ndb_data_len; /* Length of data contents, in bytes. */ - uint16_t ndb_crc16; /* Covers rest of header and data. */ - /* Followed by 'ndb_data_len' bytes of data. */ +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span style="color: #177500">/** On-disk representation of a data block. */</span> +<span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_disk_block</span> { + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">ndb_magic</span>; <span style="color: #177500">/* NFFS_BLOCK_MAGIC */</span> + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">ndb_id</span>; <span style="color: #177500">/* Unique object ID. */</span> + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">ndb_seq</span>; <span style="color: #177500">/* Sequence number; greater supersedes lesser. */</span> + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">ndb_inode_id</span>; <span style="color: #177500">/* Object ID of owning inode. */</span> + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">ndb_prev_id</span>; <span style="color: #177500">/* Object ID of previous block in file;</span> +<span style="color: #177500"> NFFS_ID_NONE if this is the first block. */</span> + <span style="color: #A90D91">uint16_t</span> <span style="color: #000000">ndb_data_len</span>; <span style="color: #177500">/* Length of data contents, in bytes. */</span> + <span style="color: #A90D91">uint16_t</span> <span style="color: #000000">ndb_crc16</span>; <span style="color: #177500">/* Covers rest of header and data. */</span> + <span style="color: #177500">/* Followed by 'ndb_data_len' bytes of data. */</span> }; </pre></div> @@ -603,29 +610,29 @@ follows:</p> <p>A valid nffs file system must contain a single "scratch area." The scratch area does not contain any objects of its own, and is only used during garbage collection. The scratch area must have a size greater than or equal to each of the other areas in flash.</p> <h3 id="ram-representation">RAM representation</h3> <p>Every object in the file system is stored in a 256-entry hash table. An object's hash key is derived from its 32-bit ID. Each list in the hash table is sorted by time of use; most-recently-used is at the front of the list. All objects are represented by the following structure:</p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">/** - * What gets stored in the hash table. Each entry represents a data block or - * an inode. - */ -struct nffs_hash_entry { - SLIST_ENTRY(nffs_hash_entry) nhe_next; - uint32_t nhe_id; /* 0 - 0x7fffffff if inode; else if block. */ - uint32_t nhe_flash_loc; /* Upper-byte = area idx; rest = area offset. */ +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span style="color: #177500">/**</span> +<span style="color: #177500"> * What gets stored in the hash table. Each entry represents a data block or</span> +<span style="color: #177500"> * an inode.</span> +<span style="color: #177500"> */</span> +<span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_hash_entry</span> { + <span style="color: #000000">SLIST_ENTRY</span>(<span style="color: #000000">nffs_hash_entry</span>) <span style="color: #000000">nhe_next</span>; + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">nhe_id</span>; <span style="color: #177500">/* 0 - 0x7fffffff if inode; else if block. */</span> + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">nhe_flash_loc</span>; <span style="color: #177500">/* Upper-byte = area idx; rest = area offset. */</span> }; </pre></div> <p>For each data block, the above structure is all that is stored in RAM. To acquire more information about a data block, the block header must be read from flash.</p> <p>Inodes require a fuller RAM representation to capture the structure of the file system. There are two types of inodes: <em>files</em> and <em>directories</em>. Each inode hash entry is actually an instance of the following structure:</p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">/** Each inode hash entry is actually one of these. */ -struct nffs_inode_entry { - struct nffs_hash_entry nie_hash_entry; - SLIST_ENTRY(nffs_inode_entry) nie_sibling_next; - union { - struct nffs_inode_list nie_child_list; /* If directory */ - struct nffs_hash_entry *nie_last_block_entry; /* If file */ +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span style="color: #177500">/** Each inode hash entry is actually one of these. */</span> +<span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_inode_entry</span> { + <span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_hash_entry</span> <span style="color: #000000">nie_hash_entry</span>; + <span style="color: #000000">SLIST_ENTRY</span>(<span style="color: #000000">nffs_inode_entry</span>) <span style="color: #000000">nie_sibling_next</span>; + <span style="color: #A90D91">union</span> { + <span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_inode_list</span> <span style="color: #000000">nie_child_list</span>; <span style="color: #177500">/* If directory */</span> + <span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_hash_entry</span> <span style="color: #000000">*nie_last_block_entry</span>; <span style="color: #177500">/* If file */</span> }; - uint8_t nie_refcnt; + <span style="color: #A90D91">uint8_t</span> <span style="color: #000000">nie_refcnt</span>; }; </pre></div> @@ -641,49 +648,49 @@ struct nffs_inode_entry { <p>The speed issues are addressed by a pair of caches. Cached inodes entries contain the file length and a much more convenient doubly-linked list of cached data blocks. The benefit of using caches is that the size of the caches need not be proportional to the size of the file system. In other words, caches can address speed efficiency concerns without negatively impacting the file system's scalability.</p> <p>nffs requires both caches during normal operation, so it is not possible to disable them. However, the cache sizes are configurable, and both caches can be configured with a size of one if RAM usage must be minimized.</p> <p>The following data structures are used in the inode and data block caches.</p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">/** Full data block representation; not stored permanently in RAM. */ -struct nffs_block { - struct nffs_hash_entry *nb_hash_entry; /* Points to real block entry. */ - uint32_t nb_seq; /* Sequence number; greater - supersedes lesser. */ - struct nffs_inode_entry *nb_inode_entry; /* Owning inode. */ - struct nffs_hash_entry *nb_prev; /* Previous block in file. */ - uint16_t nb_data_len; /* # of data bytes in block. */ - uint16_t reserved16; +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span style="color: #177500">/** Full data block representation; not stored permanently in RAM. */</span> +<span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_block</span> { + <span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_hash_entry</span> <span style="color: #000000">*nb_hash_entry</span>; <span style="color: #177500">/* Points to real block entry. */</span> + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">nb_seq</span>; <span style="color: #177500">/* Sequence number; greater</span> +<span style="color: #177500"> supersedes lesser. */</span> + <span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_inode_entry</span> <span style="color: #000000">*nb_inode_entry</span>; <span style="color: #177500">/* Owning inode. */</span> + <span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_hash_entry</span> <span style="color: #000000">*nb_prev</span>; <span style="color: #177500">/* Previous block in file. */</span> + <span style="color: #A90D91">uint16_t</span> <span style="color: #000000">nb_data_len</span>; <span style="color: #177500">/* # of data bytes in block. */</span> + <span style="color: #A90D91">uint16_t</span> <span style="color: #000000">reserved16</span>; }; </pre></div> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">/** Represents a single cached data block. */ -struct nffs_cache_block { - TAILQ_ENTRY(nffs_cache_block) ncb_link; /* Next / prev cached block. */ - struct nffs_block ncb_block; /* Full data block. */ - uint32_t ncb_file_offset; /* File offset of this block. */ +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span style="color: #177500">/** Represents a single cached data block. */</span> +<span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_cache_block</span> { + <span style="color: #000000">TAILQ_ENTRY</span>(<span style="color: #000000">nffs_cache_block</span>) <span style="color: #000000">ncb_link</span>; <span style="color: #177500">/* Next / prev cached block. */</span> + <span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_block</span> <span style="color: #000000">ncb_block</span>; <span style="color: #177500">/* Full data block. */</span> + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">ncb_file_offset</span>; <span style="color: #177500">/* File offset of this block. */</span> }; </pre></div> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">/** Full inode representation; not stored permanently in RAM. */ -struct nffs_inode { - struct nffs_inode_entry *ni_inode_entry; /* Points to real inode entry. */ - uint32_t ni_seq; /* Sequence number; greater - supersedes lesser. */ - struct nffs_inode_entry *ni_parent; /* Points to parent directory. */ - uint8_t ni_filename_len; /* # chars in filename. */ - uint8_t ni_filename[NFFS_SHORT_FILENAME_LEN]; /* First 3 bytes. */ +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span style="color: #177500">/** Full inode representation; not stored permanently in RAM. */</span> +<span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_inode</span> { + <span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_inode_entry</span> <span style="color: #000000">*ni_inode_entry</span>; <span style="color: #177500">/* Points to real inode entry. */</span> + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">ni_seq</span>; <span style="color: #177500">/* Sequence number; greater</span> +<span style="color: #177500"> supersedes lesser. */</span> + <span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_inode_entry</span> <span style="color: #000000">*ni_parent</span>; <span style="color: #177500">/* Points to parent directory. */</span> + <span style="color: #A90D91">uint8_t</span> <span style="color: #000000">ni_filename_len</span>; <span style="color: #177500">/* # chars in filename. */</span> + <span style="color: #A90D91">uint8_t</span> <span style="color: #000000">ni_filename</span>[<span style="color: #000000">NFFS_SHORT_FILENAME_LEN</span>]; <span style="color: #177500">/* First 3 bytes. */</span> }; </pre></div> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">/** Doubly-linked tail queue of cached blocks; contained in cached inodes. */ -TAILQ_HEAD(nffs_block_cache_list, nffs_block_cache_entry); +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span style="color: #177500">/** Doubly-linked tail queue of cached blocks; contained in cached inodes. */</span> +<span style="color: #000000">TAILQ_HEAD</span>(<span style="color: #000000">nffs_block_cache_list</span>, <span style="color: #000000">nffs_block_cache_entry</span>); -/** Represents a single cached file inode. */ -struct nffs_cache_inode { - TAILQ_ENTRY(nffs_cache_inode) nci_link; /* Sorted; LRU at tail. */ - struct nffs_inode nci_inode; /* Full inode. */ - struct nffs_cache_block_list nci_block_list; /* List of cached blocks. */ - uint32_t nci_file_size; /* Total file size. */ +<span style="color: #177500">/** Represents a single cached file inode. */</span> +<span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_cache_inode</span> { + <span style="color: #000000">TAILQ_ENTRY</span>(<span style="color: #000000">nffs_cache_inode</span>) <span style="color: #000000">nci_link</span>; <span style="color: #177500">/* Sorted; LRU at tail. */</span> + <span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_inode</span> <span style="color: #000000">nci_inode</span>; <span style="color: #177500">/* Full inode. */</span> + <span style="color: #A90D91">struct</span> <span style="color: #000000">nffs_cache_block_list</span> <span style="color: #000000">nci_block_list</span>; <span style="color: #177500">/* List of cached blocks. */</span> + <span style="color: #A90D91">uint32_t</span> <span style="color: #000000">nci_file_size</span>; <span style="color: #177500">/* Total file size. */</span> }; </pre></div>
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/fs/otherfs/index.html ---------------------------------------------------------------------- diff --git a/os/modules/fs/otherfs/index.html b/os/modules/fs/otherfs/index.html index 6210ca3..2437016 100644 --- a/os/modules/fs/otherfs/index.html +++ b/os/modules/fs/otherfs/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> @@ -489,42 +496,42 @@ pkg.deps: <h3 id="2-register-your-packages-api-with-the-fsfs-interface">2. Register your package's API with the <code>fs/fs</code> interface.</h3> <p>The <code>fs/fs</code> package calls into the underlying file system via a collection of function pointers. To plug your file system into the <code>fs/fs</code> API, you must assign these function pointers to the corresponding routines in your file system package.</p> <p>For example, <code>nffs</code> registers itself with <code>fs/fs</code> as follows (from <code>fs/nffs/src/nffs.c</code>):</p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">static const struct fs_ops nffs_ops = { - .f_open = nffs_open, - .f_close = nffs_close, - .f_read = nffs_read, - .f_write = nffs_write, +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span style="color: #A90D91">static</span> <span style="color: #A90D91">const</span> <span style="color: #A90D91">struct</span> <span style="color: #000000">fs_ops</span> <span style="color: #000000">nffs_ops</span> <span style="color: #000000">=</span> { + .<span style="color: #000000">f_open</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_open</span>, + .<span style="color: #000000">f_close</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_close</span>, + .<span style="color: #000000">f_read</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_read</span>, + .<span style="color: #000000">f_write</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_write</span>, - .f_seek = nffs_seek, - .f_getpos = nffs_getpos, - .f_filelen = nffs_file_len, + .<span style="color: #000000">f_seek</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_seek</span>, + .<span style="color: #000000">f_getpos</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_getpos</span>, + .<span style="color: #000000">f_filelen</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_file_len</span>, - .f_unlink = nffs_unlink, - .f_rename = nffs_rename, - .f_mkdir = nffs_mkdir, + .<span style="color: #000000">f_unlink</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_unlink</span>, + .<span style="color: #000000">f_rename</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_rename</span>, + .<span style="color: #000000">f_mkdir</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_mkdir</span>, - .f_opendir = nffs_opendir, - .f_readdir = nffs_readdir, - .f_closedir = nffs_closedir, + .<span style="color: #000000">f_opendir</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_opendir</span>, + .<span style="color: #000000">f_readdir</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_readdir</span>, + .<span style="color: #000000">f_closedir</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_closedir</span>, - .f_dirent_name = nffs_dirent_name, - .f_dirent_is_dir = nffs_dirent_is_dir, + .<span style="color: #000000">f_dirent_name</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_dirent_name</span>, + .<span style="color: #000000">f_dirent_is_dir</span> <span style="color: #000000">=</span> <span style="color: #000000">nffs_dirent_is_dir</span>, - .f_name = "nffs" + .<span style="color: #000000">f_name</span> <span style="color: #000000">=</span> <span style="color: #C41A16">"nffs"</span> }; -int -nffs_init(void) +<span style="color: #A90D91">int</span> +<span style="color: #000000">nffs_init</span>(<span style="color: #A90D91">void</span>) { - /* [...] */ - fs_register(&nffs_ops); + <span style="color: #177500">/* [...] */</span> + <span style="color: #000000">fs_register</span>(<span style="color: #000000">&nffs_ops</span>); } </pre></div> <h3 id="header-files">Header Files</h3> <p>To gain access to <code>fs/fs</code>'s registration interface, include the following header:</p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">#include "fs/fs_if.h" +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span style="color: #633820">#include "fs/fs_if.h"</span> </pre></div> <div class="row"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal/index.html b/os/modules/hal/hal/index.html index 01cdd82..e9c28a1 100644 --- a/os/modules/hal/hal/index.html +++ b/os/modules/hal/hal/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_adc/hal_adc/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_adc/hal_adc/index.html b/os/modules/hal/hal_adc/hal_adc/index.html index a929bc9..58e5b5f 100644 --- a/os/modules/hal/hal_adc/hal_adc/index.html +++ b/os/modules/hal/hal_adc/hal_adc/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_api/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_api/index.html b/os/modules/hal/hal_api/index.html index cc746d5..1b11738 100644 --- a/os/modules/hal/hal_api/index.html +++ b/os/modules/hal/hal_api/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_architecture/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_architecture/index.html b/os/modules/hal/hal_architecture/index.html index 0fc85bf..7d8f590 100644 --- a/os/modules/hal/hal_architecture/index.html +++ b/os/modules/hal/hal_architecture/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_cputime/hal_cpu_timer/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_cputime/hal_cpu_timer/index.html b/os/modules/hal/hal_cputime/hal_cpu_timer/index.html index 77a39fe..f94282e 100644 --- a/os/modules/hal/hal_cputime/hal_cpu_timer/index.html +++ b/os/modules/hal/hal_cputime/hal_cpu_timer/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_creation/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_creation/index.html b/os/modules/hal/hal_creation/index.html index d2e987f..baa1fb6 100644 --- a/os/modules/hal/hal_creation/index.html +++ b/os/modules/hal/hal_creation/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_dac/hal_dac/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_dac/hal_dac/index.html b/os/modules/hal/hal_dac/hal_dac/index.html index 2573a16..3a1fd62 100644 --- a/os/modules/hal/hal_dac/hal_dac/index.html +++ b/os/modules/hal/hal_dac/hal_dac/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_flash/hal_flash/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_flash/hal_flash/index.html b/os/modules/hal/hal_flash/hal_flash/index.html index e5a5337..41afecf 100644 --- a/os/modules/hal/hal_flash/hal_flash/index.html +++ b/os/modules/hal/hal_flash/hal_flash/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_flash/hal_flash_int/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_flash/hal_flash_int/index.html b/os/modules/hal/hal_flash/hal_flash_int/index.html index a4cd370..733b156 100644 --- a/os/modules/hal/hal_flash/hal_flash_int/index.html +++ b/os/modules/hal/hal_flash/hal_flash_int/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_flash/hal_flash_map/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_flash/hal_flash_map/index.html b/os/modules/hal/hal_flash/hal_flash_map/index.html index c5f7603..326fbdc 100644 --- a/os/modules/hal/hal_flash/hal_flash_map/index.html +++ b/os/modules/hal/hal_flash/hal_flash_map/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_gpio/hal_gpio/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_gpio/hal_gpio/index.html b/os/modules/hal/hal_gpio/hal_gpio/index.html index e363425..f7cc2ee 100644 --- a/os/modules/hal/hal_gpio/hal_gpio/index.html +++ b/os/modules/hal/hal_gpio/hal_gpio/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_i2c/hal_i2c/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_i2c/hal_i2c/index.html b/os/modules/hal/hal_i2c/hal_i2c/index.html index f0f724d..7d9f027 100644 --- a/os/modules/hal/hal_i2c/hal_i2c/index.html +++ b/os/modules/hal/hal_i2c/hal_i2c/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_in_libraries/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_in_libraries/index.html b/os/modules/hal/hal_in_libraries/index.html index ce1fd93..a6255ec 100644 --- a/os/modules/hal/hal_in_libraries/index.html +++ b/os/modules/hal/hal_in_libraries/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_pwm/hal_pwm/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_pwm/hal_pwm/index.html b/os/modules/hal/hal_pwm/hal_pwm/index.html index 066f87d..c60740b 100644 --- a/os/modules/hal/hal_pwm/hal_pwm/index.html +++ b/os/modules/hal/hal_pwm/hal_pwm/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_spi/hal_spi/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_spi/hal_spi/index.html b/os/modules/hal/hal_spi/hal_spi/index.html index 25823bb..be7dc49 100644 --- a/os/modules/hal/hal_spi/hal_spi/index.html +++ b/os/modules/hal/hal_spi/hal_spi/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_system/hal_sys/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_system/hal_sys/index.html b/os/modules/hal/hal_system/hal_sys/index.html index 8d7c0d2..07b9944 100644 --- a/os/modules/hal/hal_system/hal_sys/index.html +++ b/os/modules/hal/hal_system/hal_sys/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/hal/hal_uart/hal_uart/index.html ---------------------------------------------------------------------- diff --git a/os/modules/hal/hal_uart/hal_uart/index.html b/os/modules/hal/hal_uart/hal_uart/index.html index 3c8c355..cf1468a 100644 --- a/os/modules/hal/hal_uart/hal_uart/index.html +++ b/os/modules/hal/hal_uart/hal_uart/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/imgmgr/imgmgr/index.html ---------------------------------------------------------------------- diff --git a/os/modules/imgmgr/imgmgr/index.html b/os/modules/imgmgr/imgmgr/index.html index e415272..116e779 100644 --- a/os/modules/imgmgr/imgmgr/index.html +++ b/os/modules/imgmgr/imgmgr/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/imgmgr/imgmgr_module_init/index.html ---------------------------------------------------------------------- diff --git a/os/modules/imgmgr/imgmgr_module_init/index.html b/os/modules/imgmgr/imgmgr_module_init/index.html index 002cd2e..6391f30 100644 --- a/os/modules/imgmgr/imgmgr_module_init/index.html +++ b/os/modules/imgmgr/imgmgr_module_init/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/imgmgr/imgr_ver_parse/index.html ---------------------------------------------------------------------- diff --git a/os/modules/imgmgr/imgr_ver_parse/index.html b/os/modules/imgmgr/imgr_ver_parse/index.html index 3a140f1..6f07143 100644 --- a/os/modules/imgmgr/imgr_ver_parse/index.html +++ b/os/modules/imgmgr/imgr_ver_parse/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/imgmgr/imgr_ver_str/index.html ---------------------------------------------------------------------- diff --git a/os/modules/imgmgr/imgr_ver_str/index.html b/os/modules/imgmgr/imgr_ver_str/index.html index efe54bd..b22a2c6 100644 --- a/os/modules/imgmgr/imgr_ver_str/index.html +++ b/os/modules/imgmgr/imgr_ver_str/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/json/json/index.html ---------------------------------------------------------------------- diff --git a/os/modules/json/json/index.html b/os/modules/json/json/index.html index 221bf45..88bf7a4 100644 --- a/os/modules/json/json/index.html +++ b/os/modules/json/json/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/json/json_encode_object_entry/index.html ---------------------------------------------------------------------- diff --git a/os/modules/json/json_encode_object_entry/index.html b/os/modules/json/json_encode_object_entry/index.html index eb099cc..31e7248 100644 --- a/os/modules/json/json_encode_object_entry/index.html +++ b/os/modules/json/json_encode_object_entry/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/json/json_encode_object_finish/index.html ---------------------------------------------------------------------- diff --git a/os/modules/json/json_encode_object_finish/index.html b/os/modules/json/json_encode_object_finish/index.html index 023e3a5..291e9cd 100644 --- a/os/modules/json/json_encode_object_finish/index.html +++ b/os/modules/json/json_encode_object_finish/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/json/json_encode_object_key/index.html ---------------------------------------------------------------------- diff --git a/os/modules/json/json_encode_object_key/index.html b/os/modules/json/json_encode_object_key/index.html index a3a0f58..8737236 100644 --- a/os/modules/json/json_encode_object_key/index.html +++ b/os/modules/json/json_encode_object_key/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/json/json_encode_object_start/index.html ---------------------------------------------------------------------- diff --git a/os/modules/json/json_encode_object_start/index.html b/os/modules/json/json_encode_object_start/index.html index e589a96..10e8cee 100644 --- a/os/modules/json/json_encode_object_start/index.html +++ b/os/modules/json/json_encode_object_start/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/json/json_read_object/index.html ---------------------------------------------------------------------- diff --git a/os/modules/json/json_read_object/index.html b/os/modules/json/json_read_object/index.html index 42c119d..b50eba8 100644 --- a/os/modules/json/json_read_object/index.html +++ b/os/modules/json/json_read_object/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/logs/logs/index.html ---------------------------------------------------------------------- diff --git a/os/modules/logs/logs/index.html b/os/modules/logs/logs/index.html index 8697cb8..7093c0b 100644 --- a/os/modules/logs/logs/index.html +++ b/os/modules/logs/logs/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/shell/shell/index.html ---------------------------------------------------------------------- diff --git a/os/modules/shell/shell/index.html b/os/modules/shell/shell/index.html index 74ac5ba..36181ac 100644 --- a/os/modules/shell/shell/index.html +++ b/os/modules/shell/shell/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/shell/shell_cmd_register/index.html ---------------------------------------------------------------------- diff --git a/os/modules/shell/shell_cmd_register/index.html b/os/modules/shell/shell_cmd_register/index.html index 6835012..03cce9a 100644 --- a/os/modules/shell/shell_cmd_register/index.html +++ b/os/modules/shell/shell_cmd_register/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/shell/shell_nlip_input_register/index.html ---------------------------------------------------------------------- diff --git a/os/modules/shell/shell_nlip_input_register/index.html b/os/modules/shell/shell_nlip_input_register/index.html index 6ef179c..db6591a 100644 --- a/os/modules/shell/shell_nlip_input_register/index.html +++ b/os/modules/shell/shell_nlip_input_register/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/shell/shell_nlip_output/index.html ---------------------------------------------------------------------- diff --git a/os/modules/shell/shell_nlip_output/index.html b/os/modules/shell/shell_nlip_output/index.html index 67cb6a5..e567bf4 100644 --- a/os/modules/shell/shell_nlip_output/index.html +++ b/os/modules/shell/shell_nlip_output/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/shell/shell_task_init/index.html ---------------------------------------------------------------------- diff --git a/os/modules/shell/shell_task_init/index.html b/os/modules/shell/shell_task_init/index.html index f715eb9..0e28b1e 100644 --- a/os/modules/shell/shell_task_init/index.html +++ b/os/modules/shell/shell_task_init/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/stats/stats/index.html ---------------------------------------------------------------------- diff --git a/os/modules/stats/stats/index.html b/os/modules/stats/stats/index.html index 4bc605f..dfc1bdf 100644 --- a/os/modules/stats/stats/index.html +++ b/os/modules/stats/stats/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/testutil/test_assert/index.html ---------------------------------------------------------------------- diff --git a/os/modules/testutil/test_assert/index.html b/os/modules/testutil/test_assert/index.html index afde64b..8c65e2c 100644 --- a/os/modules/testutil/test_assert/index.html +++ b/os/modules/testutil/test_assert/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/testutil/test_case/index.html ---------------------------------------------------------------------- diff --git a/os/modules/testutil/test_case/index.html b/os/modules/testutil/test_case/index.html index 5ab9bcb..8df37cf 100644 --- a/os/modules/testutil/test_case/index.html +++ b/os/modules/testutil/test_case/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/testutil/test_decl/index.html ---------------------------------------------------------------------- diff --git a/os/modules/testutil/test_decl/index.html b/os/modules/testutil/test_decl/index.html index 079046d..6a171cf 100644 --- a/os/modules/testutil/test_decl/index.html +++ b/os/modules/testutil/test_decl/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/testutil/test_pass/index.html ---------------------------------------------------------------------- diff --git a/os/modules/testutil/test_pass/index.html b/os/modules/testutil/test_pass/index.html index 6633365..a409851 100644 --- a/os/modules/testutil/test_pass/index.html +++ b/os/modules/testutil/test_pass/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/testutil/test_suite/index.html ---------------------------------------------------------------------- diff --git a/os/modules/testutil/test_suite/index.html b/os/modules/testutil/test_suite/index.html index b9aff19..b47615f 100644 --- a/os/modules/testutil/test_suite/index.html +++ b/os/modules/testutil/test_suite/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/testutil/testutil/index.html ---------------------------------------------------------------------- diff --git a/os/modules/testutil/testutil/index.html b/os/modules/testutil/testutil/index.html index 1f877a0..2e9ae65 100644 --- a/os/modules/testutil/testutil/index.html +++ b/os/modules/testutil/testutil/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/testutil/tu_init/index.html ---------------------------------------------------------------------- diff --git a/os/modules/testutil/tu_init/index.html b/os/modules/testutil/tu_init/index.html index 807ddf5..9c71455 100644 --- a/os/modules/testutil/tu_init/index.html +++ b/os/modules/testutil/tu_init/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/modules/testutil/tu_restart/index.html ---------------------------------------------------------------------- diff --git a/os/modules/testutil/tu_restart/index.html b/os/modules/testutil/tu_restart/index.html index c408654..9f3eefd 100644 --- a/os/modules/testutil/tu_restart/index.html +++ b/os/modules/testutil/tu_restart/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/os_user_guide/index.html ---------------------------------------------------------------------- diff --git a/os/os_user_guide/index.html b/os/os_user_guide/index.html index 252fbae..9673a1a 100644 --- a/os/os_user_guide/index.html +++ b/os/os_user_guide/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/tutorials/STM32F303/index.html ---------------------------------------------------------------------- diff --git a/os/tutorials/STM32F303/index.html b/os/tutorials/STM32F303/index.html index ecb266e..40f9fb2 100644 --- a/os/tutorials/STM32F303/index.html +++ b/os/tutorials/STM32F303/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/tutorials/add_repos/index.html ---------------------------------------------------------------------- diff --git a/os/tutorials/add_repos/index.html b/os/tutorials/add_repos/index.html index ff50f7a..446f931 100644 --- a/os/tutorials/add_repos/index.html +++ b/os/tutorials/add_repos/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/bdc0c773/os/tutorials/air_quality_sensor/index.html ---------------------------------------------------------------------- diff --git a/os/tutorials/air_quality_sensor/index.html b/os/tutorials/air_quality_sensor/index.html index 5e57616..8e228ec 100644 --- a/os/tutorials/air_quality_sensor/index.html +++ b/os/tutorials/air_quality_sensor/index.html @@ -46,6 +46,11 @@ + + + + + <nav id="navbar" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> @@ -79,7 +84,9 @@ > <a href="/about/">About</a> </li> - <li> + <li + class="active" +> <a href="/os/introduction/">Documentation</a> </li> <li @@ -112,7 +119,7 @@ <div class="container"> <div class="row"> - <div class="col-md-3 v2-sidebar"><div class="hidden-print" role="complementary"> + <div class="col-md-3 v2-sidebar"><div id="docSidebar" class="hidden-print" role="complementary"> <div class="top"> <img class="hidden-xs hidden-sm logo-small" src="/img/logo.svg" alt="MyNewt" title="MyNewt"> <div role="search">
