2016-03-17 21:45:35 +01:00
|
|
|
/****************************************************************************
|
2020-08-05 19:43:13 +02:00
|
|
|
* drivers/note/note_driver.c
|
2016-03-17 21:45:35 +01:00
|
|
|
*
|
2020-09-08 12:44:29 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2016-03-17 21:45:35 +01:00
|
|
|
*
|
2020-09-08 12:44:29 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2016-03-17 21:45:35 +01:00
|
|
|
*
|
2020-09-08 12:44:29 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2016-03-17 21:45:35 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-09-08 12:44:29 +02:00
|
|
|
#include <nuttx/note/note_driver.h>
|
|
|
|
#include <nuttx/note/noteram_driver.h>
|
2020-09-02 06:59:34 +02:00
|
|
|
#include <nuttx/note/notectl_driver.h>
|
2016-03-17 21:45:35 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-08-06 20:57:30 +02:00
|
|
|
/****************************************************************************
|
2020-09-08 12:44:29 +02:00
|
|
|
* Name: note_register
|
2020-08-06 20:57:30 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2020-09-08 12:44:29 +02:00
|
|
|
* Register sched note related drivers at /dev folder that can be used by
|
|
|
|
* an application to read or filter the note data.
|
2020-08-06 20:57:30 +02:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
2020-09-08 12:44:29 +02:00
|
|
|
* None.
|
2020-08-06 20:57:30 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
2020-09-08 12:44:29 +02:00
|
|
|
* Zero on succress. A negated errno value is returned on a failure.
|
2020-08-06 20:57:30 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-09-08 12:44:29 +02:00
|
|
|
int note_register(void)
|
2020-08-06 20:57:30 +02:00
|
|
|
{
|
2020-09-08 12:44:29 +02:00
|
|
|
int ret = 0;
|
2020-08-06 20:57:30 +02:00
|
|
|
|
2020-09-08 12:44:29 +02:00
|
|
|
#ifdef CONFIG_DRIVER_NOTERAM
|
|
|
|
ret = noteram_register();
|
|
|
|
if (ret < 0)
|
2020-08-06 20:57:30 +02:00
|
|
|
{
|
2020-09-08 12:44:29 +02:00
|
|
|
return ret;
|
2020-08-06 20:57:30 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-09-02 06:59:34 +02:00
|
|
|
#ifdef CONFIG_DRIVER_NOTECTL
|
|
|
|
ret = notectl_register();
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-09-08 12:44:29 +02:00
|
|
|
return ret;
|
2016-03-17 21:45:35 +01:00
|
|
|
}
|