Skip to content

Commit 5e06c91

Browse files
authored
Merge pull request #4716 from tyomitch/main
s/Circuit Python/CircuitPython/g
2 parents 446169e + 908d83d commit 5e06c91

File tree

19 files changed

+19
-19
lines changed

19 files changed

+19
-19
lines changed

ports/atmel-samd/asf4_conf/samd21/hpl_gclk_config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Circuit Python SAMD21 clock tree:
1+
// CircuitPython SAMD21 clock tree:
22
// DFLL48M (with USBCRM on to sync with external USB ref) -> GCLK0, GCLK1
33
// GCLK0 (48MHz) -> peripherals
44
// GLCK1 (48MHz divided by 150 = 320Khz) -> DAC peripheral (DAC requires 350KHz or lower)

ports/atmel-samd/asf4_conf/samd51/hpl_gclk_config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Circuit Python SAMD51 clock tree:
1+
// CircuitPython SAMD51 clock tree:
22
// DFLL48M (with USBCRM on to sync with external USB ref) -> GCLK1, GCLK5, GCLK6
33
// GCLK1 (48MHz) -> 48 MHz peripherals
44
// GCLK5 (48 MHz divided down to 2 MHz) -> DPLL0

ports/atmel-samd/asf4_conf/same51/hpl_gclk_config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Circuit Python SAMD51 clock tree:
1+
// CircuitPython SAMD51 clock tree:
22
// DFLL48M (with USBCRM on to sync with external USB ref) -> GCLK1, GCLK5, GCLK6
33
// GCLK1 (48MHz) -> 48 MHz peripherals
44
// GCLK5 (48 MHz divided down to 2 MHz) -> DPLL0

ports/atmel-samd/asf4_conf/same54/hpl_gclk_config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Circuit Python SAMD51 clock tree:
1+
// CircuitPython SAMD51 clock tree:
22
// DFLL48M (with USBCRM on to sync with external USB ref) -> GCLK1, GCLK5, GCLK6
33
// GCLK1 (48MHz) -> 48 MHz peripherals
44
// GCLK5 (48 MHz divided down to 2 MHz) -> DPLL0

ports/nrf/boards/common.template.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ SECTIONS
136136
. = ALIGN(4);
137137
} >APP_RAM
138138

139-
/* Remove exception unwinding information, since Circuit Python
139+
/* Remove exception unwinding information, since CircuitPython
140140
does not support this GCC feature. */
141141
/DISCARD/ :
142142
{

ports/nrf/common-hal/rtc/RTC.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ __attribute__((section(".uninitialized"))) static uint32_t rtc_offset[3];
4242
// the system crashes or reboots, these values will remain undisturbed and the
4343
// RTC offset will remain valid.
4444
//
45-
// If Circuit Python is updated or these symbols shift around, the prefix and
45+
// If CircuitPython is updated or these symbols shift around, the prefix and
4646
// suffix will no longer match, and the time will no longer be valid.
4747
#define RTC_OFFSET_CHECK_PREFIX 0x25ea7e2a
4848
#define RTC_OFFSET_CHECK_SUFFIX 0x2b80b69e

ports/nrf/supervisor/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ void reset_cpu(void) {
282282
}
283283

284284
// The uninitialized data section is placed directly after BSS, under the theory
285-
// that Circuit Python has a lot more .data and .bss than the bootloader. As a
285+
// that CircuitPython has a lot more .data and .bss than the bootloader. As a
286286
// result, this section is less likely to be tampered with by the bootloader.
287287
extern uint32_t _euninitialized;
288288

shared-bindings/_pixelbuf/PixelBuf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Circuit Python project, https://github.com/adafruit/circuitpython
2+
* This file is part of the CircuitPython project, https://github.com/adafruit/circuitpython
33
*
44
* The MIT License (MIT)
55
*

shared-bindings/_pixelbuf/PixelBuf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Circuit Python project, https://github.com/adafruit/circuitpython
2+
* This file is part of the CircuitPython project, https://github.com/adafruit/circuitpython
33
*
44
* The MIT License (MIT)
55
*

shared-bindings/_pixelbuf/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Circuit Python project, https://github.com/adafruit/circuitpython
2+
* This file is part of the CircuitPython project, https://github.com/adafruit/circuitpython
33
*
44
* The MIT License (MIT)
55
*

shared-bindings/_pixelbuf/__init__.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Circuit Python project, https://github.com/adafruit/circuitpython
2+
* This file is part of the CircuitPython project, https://github.com/adafruit/circuitpython
33
*
44
* The MIT License (MIT)
55
*

shared-bindings/aesio/aes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
//| from binascii import hexlify
2929
//|
3030
//| key = b'Sixteen byte key'
31-
//| inp = b'Circuit Python!!' # Note: 16-bytes long
31+
//| inp = b'CircuitPython!!!' # Note: 16-bytes long
3232
//| outp = bytearray(len(inp))
3333
//| cipher = aesio.AES(key, aesio.mode.MODE_ECB)
3434
//| cipher.encrypt_into(inp, outp)

shared-bindings/bitops/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Circuit Python project, https://github.com/adafruit/circuitpython
2+
* This file is part of the CircuitPython project, https://github.com/adafruit/circuitpython
33
*
44
* The MIT License (MIT)
55
*

shared-bindings/bitops/__init__.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Circuit Python project, https://github.com/adafruit/circuitpython
2+
* This file is part of the CircuitPython project, https://github.com/adafruit/circuitpython
33
*
44
* The MIT License (MIT)
55
*

shared-module/_pixelbuf/PixelBuf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Circuit Python project, https://github.com/adafruit/circuitpython
2+
* This file is part of the CircuitPython project, https://github.com/adafruit/circuitpython
33
*
44
* The MIT License (MIT)
55
*

shared-module/_pixelbuf/PixelBuf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Circuit Python project, https://github.com/adafruit/circuitpython
2+
* This file is part of the CircuitPython project, https://github.com/adafruit/circuitpython
33
*
44
* The MIT License (MIT)
55
*

shared-module/bitops/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Circuit Python project, https://github.com/adafruit/circuitpython
2+
* This file is part of the CircuitPython project, https://github.com/adafruit/circuitpython
33
*
44
* The MIT License (MIT)
55
*

shared-module/bitops/__init__.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Circuit Python project, https://github.com/adafruit/circuitpython
2+
* This file is part of the CircuitPython project, https://github.com/adafruit/circuitpython
33
*
44
* The MIT License (MIT)
55
*

tools/cpboard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ def print_error_exit(args, e):
630630
def main():
631631
import argparse
632632

633-
cmd_parser = argparse.ArgumentParser(description="Circuit Python Board Tool")
633+
cmd_parser = argparse.ArgumentParser(description="CircuitPython Board Tool")
634634
cmd_parser.add_argument("board", help="build_name, vid:pid or /dev/tty")
635635
cmd_parser.add_argument("-f", "--firmware", help="upload UF2 firmware file")
636636
cmd_parser.add_argument("-c", "--command", help="program passed in as string")

0 commit comments

Comments
 (0)