Skip to content

Commit

Permalink
#374 Dio_Arch.* for x86 update of functions
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanManuelCruz committed Jan 22, 2016
1 parent 6857052 commit f6e70ea
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
17 changes: 17 additions & 0 deletions modules/hisio/inc/x86/Dio_Arch.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
* Initials Name
* ---------------------------
* MaCe Mariano Cerdeiro
* JuCe Juan Cecconi
* JuCe Juan Manuel Cruz
*/

/*
Expand All @@ -70,6 +72,21 @@ extern "C" {
/*==================[external data declaration]==============================*/

/*==================[external functions declaration]=========================*/
/** \brief
**/
extern IO_ErrorType Dio_InitSync_Arch(void * address);

/** \brief
**/
extern void Dio_SetSync_Arch(IO_ChannelType channel, IO_ValueType value);

/** \brief
**/
extern IO_ValueType Dio_GetSync_Arch(IO_ChannelType channel);

/** \brief
**/
extern void Dio_ToggleSync_Arch(IO_ChannelType channel);

/*==================[cplusplus]==============================================*/
#ifdef __cplusplus
Expand Down
6 changes: 6 additions & 0 deletions modules/hisio/src/x86/Dio_Arch.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
* ---------------------------
* MaCe Mariano Cerdeiro
* JuCe Juan Cecconi
* JMC Juan Manuel Cruz
*/

/*
Expand Down Expand Up @@ -88,6 +89,11 @@ extern void Dio_SetSync_Arch(IO_ChannelType channel, IO_ValueType value)

}

extern void Dio_ToggleSync_Arch(IO_ChannelType channel, IO_ValueType value)
{

}

extern IO_ValueType Dio_GetPortSync_Arch(IO_ChannelType channel)
{
return 0xFF;
Expand Down

0 comments on commit f6e70ea

Please sign in to comment.