Skip to content

Commit 2289708

Browse files
author
oclyke
committed
update hal
1 parent 342ba78 commit 2289708

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+2402
-1525
lines changed

cores/arduino/am_sdk_ap3/mcu/apollo3/hal/Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,26 @@
22
#
33
# Makefile - Rules for compiling
44
#
5-
# Copyright (c) 2019, Ambiq Micro
5+
# Copyright (c) 2020, Ambiq Micro
66
# All rights reserved.
7-
#
7+
#
88
# Redistribution and use in source and binary forms, with or without
99
# modification, are permitted provided that the following conditions are met:
10-
#
10+
#
1111
# 1. Redistributions of source code must retain the above copyright notice,
1212
# this list of conditions and the following disclaimer.
13-
#
13+
#
1414
# 2. Redistributions in binary form must reproduce the above copyright
1515
# notice, this list of conditions and the following disclaimer in the
1616
# documentation and/or other materials provided with the distribution.
17-
#
17+
#
1818
# 3. Neither the name of the copyright holder nor the names of its
1919
# contributors may be used to endorse or promote products derived from this
2020
# software without specific prior written permission.
21-
#
21+
#
2222
# Third party software included in this distribution is subject to the
2323
# additional license terms as defined in the /docs/licenses directory.
24-
#
24+
#
2525
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2626
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2727
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
@@ -34,7 +34,7 @@
3434
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3535
# POSSIBILITY OF SUCH DAMAGE.
3636
#
37-
# This is part of revision v2.2.0-7-g63f7c2ba1 of the AmbiqSuite Development Package.
37+
# This is part of revision 2.4.2 of the AmbiqSuite Development Package.
3838
#
3939
#******************************************************************************
4040

cores/arduino/am_sdk_ap3/mcu/apollo3/hal/am_hal_adc.c

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,34 @@
55
//!
66
//! @brief Functions for interfacing with the Analog to Digital Converter.
77
//!
8-
//! @addtogroup adc2 Analog-to-Digital Converter (ADC)
9-
//! @ingroup apollo2hal
8+
//! @addtogroup adc3 Analog-to-Digital Converter (ADC)
9+
//! @ingroup apollo3hal
1010
//! @{
1111
//
1212
//*****************************************************************************
1313

1414
//*****************************************************************************
1515
//
16-
// Copyright (c) 2019, Ambiq Micro
16+
// Copyright (c) 2020, Ambiq Micro
1717
// All rights reserved.
18-
//
18+
//
1919
// Redistribution and use in source and binary forms, with or without
2020
// modification, are permitted provided that the following conditions are met:
21-
//
21+
//
2222
// 1. Redistributions of source code must retain the above copyright notice,
2323
// this list of conditions and the following disclaimer.
24-
//
24+
//
2525
// 2. Redistributions in binary form must reproduce the above copyright
2626
// notice, this list of conditions and the following disclaimer in the
2727
// documentation and/or other materials provided with the distribution.
28-
//
28+
//
2929
// 3. Neither the name of the copyright holder nor the names of its
3030
// contributors may be used to endorse or promote products derived from this
3131
// software without specific prior written permission.
32-
//
32+
//
3333
// Third party software included in this distribution is subject to the
3434
// additional license terms as defined in the /docs/licenses directory.
35-
//
35+
//
3636
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
3737
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3838
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
@@ -45,7 +45,7 @@
4545
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
4646
// POSSIBILITY OF SUCH DAMAGE.
4747
//
48-
// This is part of revision v2.2.0-7-g63f7c2ba1 of the AmbiqSuite Development Package.
48+
// This is part of revision 2.4.2 of the AmbiqSuite Development Package.
4949
//
5050
//*****************************************************************************
5151

@@ -642,7 +642,7 @@ uint32_t am_hal_adc_control(void *pHandle,
642642
//
643643
// pArgs must point to an array of 3 floats. To assure that the
644644
// array is valid, upon calling the 3rd float (pArgs[2]) must be
645-
// set to the to the value -123.456F.
645+
// set to the value -123.456F.
646646
//
647647
if ( pArgs != NULL )
648648
{

cores/arduino/am_sdk_ap3/mcu/apollo3/hal/am_hal_adc.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,34 @@
55
//!
66
//! @brief Functions for interfacing with the Analog to Digital Converter
77
//!
8-
//! @addtogroup adc2 Analog-to-Digital Converter (ADC)
9-
//! @ingroup apollo2hal
8+
//! @addtogroup adc3 Analog-to-Digital Converter (ADC)
9+
//! @ingroup apollo3hal
1010
//! @{
1111
//
1212
//*****************************************************************************
1313

1414
//*****************************************************************************
1515
//
16-
// Copyright (c) 2019, Ambiq Micro
16+
// Copyright (c) 2020, Ambiq Micro
1717
// All rights reserved.
18-
//
18+
//
1919
// Redistribution and use in source and binary forms, with or without
2020
// modification, are permitted provided that the following conditions are met:
21-
//
21+
//
2222
// 1. Redistributions of source code must retain the above copyright notice,
2323
// this list of conditions and the following disclaimer.
24-
//
24+
//
2525
// 2. Redistributions in binary form must reproduce the above copyright
2626
// notice, this list of conditions and the following disclaimer in the
2727
// documentation and/or other materials provided with the distribution.
28-
//
28+
//
2929
// 3. Neither the name of the copyright holder nor the names of its
3030
// contributors may be used to endorse or promote products derived from this
3131
// software without specific prior written permission.
32-
//
32+
//
3333
// Third party software included in this distribution is subject to the
3434
// additional license terms as defined in the /docs/licenses directory.
35-
//
35+
//
3636
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
3737
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3838
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
@@ -45,7 +45,7 @@
4545
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
4646
// POSSIBILITY OF SUCH DAMAGE.
4747
//
48-
// This is part of revision v2.2.0-7-g63f7c2ba1 of the AmbiqSuite Development Package.
48+
// This is part of revision 2.4.2 of the AmbiqSuite Development Package.
4949
//
5050
//*****************************************************************************
5151
#ifndef AM_HAL_ADC_H

0 commit comments

Comments
 (0)