Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
features/nanostack/targets/TARGET_NCS36510/NanostackRfPhyNcs36510.h@2:7aab896b1a3b, 2019-03-13 (annotated)
- Committer:
- kevman
- Date:
- Wed Mar 13 11:03:24 2019 +0000
- Revision:
- 2:7aab896b1a3b
- Parent:
- 0:38ceb79fef03
2019-03-13
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| kevman | 0:38ceb79fef03 | 1 | /* |
| kevman | 0:38ceb79fef03 | 2 | * Copyright (c) 2014-2015 ARM Limited. All rights reserved. |
| kevman | 0:38ceb79fef03 | 3 | * SPDX-License-Identifier: Apache-2.0 |
| kevman | 0:38ceb79fef03 | 4 | * Licensed under the Apache License, Version 2.0 (the License); you may |
| kevman | 0:38ceb79fef03 | 5 | * not use this file except in compliance with the License. |
| kevman | 0:38ceb79fef03 | 6 | * You may obtain a copy of the License at |
| kevman | 0:38ceb79fef03 | 7 | * |
| kevman | 0:38ceb79fef03 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| kevman | 0:38ceb79fef03 | 9 | * |
| kevman | 0:38ceb79fef03 | 10 | * Unless required by applicable law or agreed to in writing, software |
| kevman | 0:38ceb79fef03 | 11 | * distributed under the License is distributed on an AS IS BASIS, WITHOUT |
| kevman | 0:38ceb79fef03 | 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| kevman | 0:38ceb79fef03 | 13 | * See the License for the specific language governing permissions and |
| kevman | 0:38ceb79fef03 | 14 | * limitations under the License. |
| kevman | 0:38ceb79fef03 | 15 | */ |
| kevman | 0:38ceb79fef03 | 16 | |
| kevman | 0:38ceb79fef03 | 17 | #ifndef NANOSTACK_PHY_NCS36510_H_ |
| kevman | 0:38ceb79fef03 | 18 | #define NANOSTACK_PHY_NCS36510_H_ |
| kevman | 0:38ceb79fef03 | 19 | |
| kevman | 0:38ceb79fef03 | 20 | #include "mbed.h" |
| kevman | 0:38ceb79fef03 | 21 | #include "NanostackRfPhy.h" |
| kevman | 0:38ceb79fef03 | 22 | |
| kevman | 0:38ceb79fef03 | 23 | class NanostackRfPhyNcs36510 : public NanostackRfPhy { |
| kevman | 0:38ceb79fef03 | 24 | public: |
| kevman | 0:38ceb79fef03 | 25 | NanostackRfPhyNcs36510(); |
| kevman | 0:38ceb79fef03 | 26 | ~NanostackRfPhyNcs36510(); |
| kevman | 0:38ceb79fef03 | 27 | int8_t rf_register(); |
| kevman | 0:38ceb79fef03 | 28 | void rf_unregister(); |
| kevman | 0:38ceb79fef03 | 29 | void get_mac_address(uint8_t *mac); |
| kevman | 0:38ceb79fef03 | 30 | void set_mac_address(uint8_t *mac); |
| kevman | 0:38ceb79fef03 | 31 | }; |
| kevman | 0:38ceb79fef03 | 32 | |
| kevman | 0:38ceb79fef03 | 33 | #endif /* NANOSTACK_PHY_NCS36510_H_ */ |