Skip to content

Commit e5bfb1e

Browse files
committed
PSOC6: add BSP generated sources for Cypress kits
Code generated for pioneer kits: * CY8CKIT-062-4343W * CY8CKIT-062-BLE * CY8CKIT-WIFI-BT Prototyping boards: * CY8CPROTO-062-4343W The source is generated with ModusToolbox Device Configurator. The origin design.modus files used to produce the GeneratedSource will be submitted in the consequent pull requests.
1 parent 433a5cf commit e5bfb1e

File tree

79 files changed

+19849
-0
lines changed

Some content is hidden

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

79 files changed

+19849
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
/*******************************************************************************
2+
* File Name: cycfg.c
3+
*
4+
* Description:
5+
* Wrapper function to initialize all generated code.
6+
* This file should not be modified. It was automatically generated by
7+
* ModusToolbox 1.0.0
8+
*
9+
********************************************************************************
10+
* Copyright (c) 2017-2019 Cypress Semiconductor Corporation.
11+
*
12+
* Licensed under the Apache License, Version 2.0 (the "License");
13+
* you may not use this file except in compliance with the License.
14+
* You may obtain a copy of the License at
15+
*
16+
* http://www.apache.org/licenses/LICENSE-2.0
17+
*
18+
* Unless required by applicable law or agreed to in writing, software
19+
* distributed under the License is distributed on an "AS IS" BASIS,
20+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21+
* See the License for the specific language governing permissions and
22+
* limitations under the License.
23+
********************************************************************************/
24+
25+
#include "cycfg.h"
26+
27+
void init_cycfg_all()
28+
{
29+
init_cycfg_clocks();
30+
init_cycfg_peripherals();
31+
init_cycfg_pins();
32+
init_cycfg_platform();
33+
init_cycfg_connectivity();
34+
}
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
/*******************************************************************************
2+
* File Name: cycfg.h
3+
*
4+
* Description:
5+
* Simple wrapper header containing all generated files.
6+
* This file should not be modified. It was automatically generated by
7+
* ModusToolbox 1.0.0
8+
*
9+
********************************************************************************
10+
* Copyright (c) 2017-2019 Cypress Semiconductor Corporation.
11+
*
12+
* Licensed under the Apache License, Version 2.0 (the "License");
13+
* you may not use this file except in compliance with the License.
14+
* You may obtain a copy of the License at
15+
*
16+
* http://www.apache.org/licenses/LICENSE-2.0
17+
*
18+
* Unless required by applicable law or agreed to in writing, software
19+
* distributed under the License is distributed on an "AS IS" BASIS,
20+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21+
* See the License for the specific language governing permissions and
22+
* limitations under the License.
23+
********************************************************************************/
24+
25+
#if !defined(CYCFG_H)
26+
#define CYCFG_H
27+
28+
#if defined(__cplusplus)
29+
extern "C" {
30+
#endif
31+
32+
#include "cycfg_notices.h"
33+
#include "cycfg_clocks.h"
34+
#include "cycfg_peripherals.h"
35+
#include "cycfg_pins.h"
36+
#include "cycfg_platform.h"
37+
#include "cycfg_connectivity.h"
38+
39+
void init_cycfg_all();
40+
41+
42+
#if defined(__cplusplus)
43+
}
44+
#endif
45+
46+
47+
#endif /* CYCFG_H */

0 commit comments

Comments
 (0)