Skip to content

Commit

Permalink
Remove incubator leftovers
Browse files Browse the repository at this point in the history
There were few incubator leftovers around the tree.
  • Loading branch information
sjanc committed Nov 29, 2024
1 parent 6fc0668 commit 0a7f9ae
Show file tree
Hide file tree
Showing 24 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion apps/bsncent/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
pkg.name: apps/bsncent
pkg.type: app
pkg.description: Simple BLE central application.
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:

Expand Down
2 changes: 1 addition & 1 deletion apps/bsnprph/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
pkg.name: apps/bsnprph
pkg.type: app
pkg.description: Simple BLE peripheral application.
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:

Expand Down
2 changes: 1 addition & 1 deletion apps/coremark/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
pkg.name: apps/coremark
pkg.type: app
pkg.description: Industry-standard benchmark to measures the MCU performance.
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:

Expand Down
4 changes: 2 additions & 2 deletions apps/flash_loader/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ compiler/gdbmacros/flash_loader.gdb. Or you can write your own.

Here's a target for nrf52dk, app is built as RAM resident.
```
[marko@IsMyLaptop:~/src/incubator-mynewt-blinky]$ newt target show fl_nrf52dk
[marko@IsMyLaptop:~/src/mynewt-blinky]$ newt target show fl_nrf52dk
targets/fl_nrf52dk
app=@apache-mynewt-core/apps/flash_loader
bsp=@apache-mynewt-core/hw/bsp/nordic_pca10040
Expand All @@ -41,7 +41,7 @@ targets/fl_nrf52dk
```
And then have this as the gdb script file
```
[marko@IsMyLaptop:~/src/incubator-mynewt-blinky]$ cat loader_nrf52.gdb
[marko@IsMyLaptop:~/src/mynewt-blinky]$ cat loader_nrf52.gdb
set pagination off
shell sh -c "trap '' 2; JLinkGDBServer -device nRF52 -speed 4000 -if SWD -port 3333 -singlerun > logfile.txt 2>&1 &"
Expand Down
2 changes: 1 addition & 1 deletion apps/lora_app_shell/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
pkg.name: apps/lora_app_shell
pkg.type: app
pkg.description: "Example application which uses a variety of lora app eatures."
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:

Expand Down
2 changes: 1 addition & 1 deletion apps/pwm_test/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
pkg.name: apps/pwm_test
pkg.type: app
pkg.description: Basic example application which drives an LED using PWM.
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:

Expand Down
2 changes: 1 addition & 1 deletion docs/os/modules/hal/hal_creation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ functions in the interface typically include the virtual device\_id of
the device you are controlling.

For example, in
```hal_gpio.h`` <https://github.com/apache/incubator-mynewt-core/blob/master/hw/hal/include/hal/hal_gpio.h>`__
```hal_gpio.h`` <https://github.com/apache/mynewt-core/blob/master/hw/hal/include/hal/hal_gpio.h>`__
the device enumeration is the first argument to most methods and called
``pin``.

Expand Down
4 changes: 2 additions & 2 deletions docs/os/modules/hal/hal_flash/hal_flash_int.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ The BSP for the hardware will implement the structs defined in this API.
Definition
~~~~~~~~~~

`hal\_flash\_int.h <https://github.com/apache/incubator-mynewt-core/blob/master/hw/hal/include/hal/hal_flash_int.h>`__
`hal\_flash\_int.h <https://github.com/apache/mynewt-core/blob/master/hw/hal/include/hal/hal_flash_int.h>`__

Examples
~~~~~~~~

The Nordic nRF52 bsp implements the hal\_flash\_int API as seen in
`hal\_bsp.c <https://github.com/apache/incubator-mynewt-core/blob/master/hw/bsp/stm32f4discovery/src/hal_bsp.c>`__
`hal\_bsp.c <https://github.com/apache/mynewt-core/blob/master/hw/bsp/stm32f4discovery/src/hal_bsp.c>`__

::

Expand Down
4 changes: 2 additions & 2 deletions docs/os/modules/hal/hal_in_libraries.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ utilize HAL functionality.

An example of the GPIO HAL being used by a driver for a UART bitbanger
that programs the start bit, data bits, and stop bit can be seen in
`hw/drivers/uart/uart\_bitbang/src/uart\_bitbang.c <https://github.com/apache/incubator-mynewt-core/blob/master/hw/drivers/uart/uart_bitbang/src/uart_bitbang.c>`__
`hw/drivers/uart/uart\_bitbang/src/uart\_bitbang.c <https://github.com/apache/mynewt-core/blob/master/hw/drivers/uart/uart_bitbang/src/uart_bitbang.c>`__

An example of the flash HAL being used by a file sytem can be seen in
`fs/nffs/src/nffs\_flash.c <https://github.com/apache/incubator-mynewt-core/blob/master/fs/nffs/src/nffs_flash.c>`__.
`fs/nffs/src/nffs\_flash.c <https://github.com/apache/mynewt-core/blob/master/fs/nffs/src/nffs_flash.c>`__.
2 changes: 1 addition & 1 deletion hw/bsp/apollo2_evb/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
pkg.name: hw/bsp/apollo2_evb
pkg.type: bsp
pkg.description: BSP definition for the Apollo I Evaluation board
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:
- apollo2
Expand Down
2 changes: 1 addition & 1 deletion hw/bsp/apollo3_evb/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
pkg.name: hw/bsp/apollo3_evb
pkg.type: bsp
pkg.description: BSP definition for the Ambiq Apollo3 EVB
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:
- apollo3
Expand Down
2 changes: 1 addition & 1 deletion hw/bsp/calliope_mini/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
pkg.name: hw/bsp/calliope_mini
pkg.type: bsp
pkg.description: BSP definition for Calliope Mini.
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:
- nrf51
Expand Down
2 changes: 1 addition & 1 deletion hw/drivers/adc/adc_apollo3/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

pkg.name: hw/drivers/adc/adc_apollo3
pkg.description: ADC driver for the Ambiq Apollo3
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:
pkg.deps:
Expand Down
2 changes: 1 addition & 1 deletion hw/drivers/adc/adc_nrf51/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

pkg.name: hw/drivers/adc/adc_nrf51
pkg.description: ADC driver for the NRF51
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:
pkg.deps:
Expand Down
2 changes: 1 addition & 1 deletion hw/drivers/adc/adc_nrf52/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

pkg.name: hw/drivers/adc/adc_nrf52
pkg.description: ADC driver for the NRF52
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:
pkg.deps:
Expand Down
2 changes: 1 addition & 1 deletion hw/drivers/pwm/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

pkg.name: hw/drivers/pwm
pkg.description: PWM driver interfaces
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:
pkg.req_apis:
Expand Down
2 changes: 1 addition & 1 deletion hw/drivers/pwm/pwm_nrf52/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

pkg.name: hw/drivers/pwm/pwm_nrf52
pkg.description: PWM driver for the NRF52
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:

Expand Down
2 changes: 1 addition & 1 deletion hw/drivers/pwm/pwm_stm32/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

pkg.name: hw/drivers/pwm/pwm_stm32
pkg.description: PWM driver for the STM32
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:

Expand Down
2 changes: 1 addition & 1 deletion hw/drivers/pwm/soft_pwm/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

pkg.name: hw/drivers/pwm/soft_pwm
pkg.description: PWM driver for the NRF52
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:

Expand Down
2 changes: 1 addition & 1 deletion hw/drivers/temp/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

pkg.name: hw/drivers/temp
pkg.description: Temperature driver interfaces
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:
pkg.req_apis:
Expand Down
2 changes: 1 addition & 1 deletion hw/drivers/temp/temp_nrf52/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

pkg.name: "hw/drivers/temp/temp_nrf52"
pkg.description: Temperature driver for nRF52
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:

Expand Down
2 changes: 1 addition & 1 deletion hw/mcu/ambiq/apollo2/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

pkg.name: hw/mcu/ambiq/apollo2
pkg.description: MCU definition for Ambiq Apollo MCUs
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:
- ambiq
Expand Down
2 changes: 1 addition & 1 deletion hw/mcu/ambiq/apollo3/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

pkg.name: hw/mcu/ambiq/apollo3
pkg.description: MCU definition for Ambiq Apollo MCUs
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:
- ambiq
Expand Down
2 changes: 1 addition & 1 deletion hw/mcu/ambiq/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

pkg.name: hw/mcu/ambiq
pkg.description: MCU definitions for Ambiq Apollo chip
pkg.author: "Apache Mynewt <dev@mynewt.incubator.apache.org>"
pkg.author: "Apache Mynewt <[email protected]>"
pkg.homepage: "http://mynewt.apache.org/"
pkg.keywords:
- ambiq
Expand Down

0 comments on commit 0a7f9ae

Please sign in to comment.