docs: Update all WiPy docs to reflect the new API.

This commit is contained in:
danicampora
2015-10-14 12:32:01 +02:00
parent fca3308cc3
commit 4542643025
28 changed files with 1283 additions and 847 deletions

View File

@@ -300,6 +300,11 @@ html_context = {
# Append the other ports' specific folders/files to the exclude pattern
exclude_patterns.extend([port + '*' for port in ports if port != micropy_port])
# Exclude pyb module if the port is the WiPy
if micropy_port == 'wipy':
exclude_patterns.append('library/pyb*')
else: # exclude machine
exclude_patterns.append('library/machine*')
# Specify a custom master document based on the port name
master_doc = micropy_port + '_' + 'index'