luckfox-pico-sdk/media/luckfox/examples/luckfox_gpio_test.c
2023-08-08 20:36:47 +08:00

131 lines
3.4 KiB
C
Executable File

/*****************************************************************************
* | File : luckfox_gpio_test.c
* | Author : luckfox team
* | Function : gpio output test
* | Info :
*----------------
* | This version: V1.0
* | Date : 2023-08-01
* | Info : Basic version
*
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documnetation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
******************************************************************************/
#include <stdio.h>
#include <signal.h>
#include <unistd.h>
#include <stdlib.h> //exit()
#include "luckfox_gpio.h"
#define GPIO_ALL_TEST 0
#if GPIO_ALL_TEST
#define GPIO_BEGIN_PIN (2)
#define GPIO_END_PIN (21)
#else
#define GPIO_BEGIN_PIN (16)
#define GPIO_END_PIN (21)
#endif
int GPIOS[] = {
LUCKFOX_PICO_GPIO0,
LUCKFOX_PICO_GPIO1,
LUCKFOX_PICO_GPIO2,
LUCKFOX_PICO_GPIO3,
LUCKFOX_PICO_GPIO4,
LUCKFOX_PICO_GPIO5,
LUCKFOX_PICO_GPIO6,
LUCKFOX_PICO_GPIO7,
LUCKFOX_PICO_GPIO8,
LUCKFOX_PICO_GPIO9,
LUCKFOX_PICO_GPIO10,
LUCKFOX_PICO_GPIO11,
LUCKFOX_PICO_GPIO12,
LUCKFOX_PICO_GPIO13,
LUCKFOX_PICO_GPIO14,
LUCKFOX_PICO_GPIO15,
LUCKFOX_PICO_GPIO16,
LUCKFOX_PICO_GPIO17,
LUCKFOX_PICO_GPIO18,
LUCKFOX_PICO_GPIO19,
LUCKFOX_PICO_GPIO20,
LUCKFOX_PICO_GPIO21,
#if LUCKFOX_PICO_PLUS
LUCKFOX_PICO_GPIO22, //
#endif
LUCKFOX_PICO_GPIO26,
LUCKFOX_PICO_GPIO27,
};
void Delay_ms(uint32_t xms)
{
uint32_t i;
for (i = 0; i < xms; i++)
{
usleep(1000);
}
}
void Handler(int signo)
{
// System Exit
printf("\r\nHandler:exit\r\n");
for (int x = GPIO_BEGIN_PIN; x <= GPIO_END_PIN; x++)
{
luckfox_gpio_set_value(GPIOS[x], 0);
luckfox_gpio_unexport(GPIOS[x]);
}
exit(0);
}
int main(int argc, char *argv[])
{
signal(SIGINT, Handler);
for (int x = GPIO_BEGIN_PIN; x <= GPIO_END_PIN; x++)
{
luckfox_gpio_export_direction(GPIOS[x], GPIO_DIRECTION_OUTPUT);
luckfox_gpio_set_value(GPIOS[x], 0);
}
while (1)
{
for (int x = GPIO_BEGIN_PIN; x <= GPIO_END_PIN; x++)
{
luckfox_gpio_set_value(GPIOS[x], 1);
printf("GPIO%d set \r\n",GPIOS[x]);
Delay_ms(1000);
}
for (int x = GPIO_BEGIN_PIN; x <= GPIO_END_PIN; x++)
{
luckfox_gpio_set_value(GPIOS[x], 0);
printf("GPIO%d reset \r\n",GPIOS[x]);
Delay_ms(1000);
}
}
return 0;
}