mirror of
https://github.com/google/pebble.git
synced 2025-06-28 17:23:24 -04:00
38 lines
1.4 KiB
Python
38 lines
1.4 KiB
Python
# Copyright 2024 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import argparse
|
|
import logging
|
|
|
|
from . import flash
|
|
|
|
def main(args=None):
|
|
if args is None:
|
|
parser = argparse.ArgumentParser(description='A tool for flashing a bigboard via FTDI+SWD')
|
|
parser.add_argument('hex_files', type=str, nargs='+',
|
|
help='Path to one or more hex files to flash')
|
|
parser.add_argument('--board', action='store', choices=['robert_bb2', 'silk_bb'], required=True,
|
|
help='Which board is being programmed')
|
|
parser.add_argument('--verbose', action='store_true',
|
|
help='Output lots of debugging info to the console.')
|
|
|
|
args = parser.parse_args()
|
|
|
|
logging.basicConfig(level=(logging.DEBUG if args.verbose else logging.INFO))
|
|
|
|
flash(args.board, args.hex_files)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|