#!/usr/bin/env sh
export DISPLAY=:0.0
CANVAS=$(mktemp).jpg
WALLPAPER=$(mktemp).jpg
# Create white background image
convert -size 1280x800 xc:white $CANVAS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| git init . | |
| touch .gitignore | |
| git add --all | |
| git commit -m"initial commit" | |
| git remote add origin $1 | |
| git branch develop | |
| git push origin --all |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void EDMA_SetCallback(edma_handle_t *handle, edma_callback callback, void *userData) | |
| { | |
| assert(handle != NULL); | |
| handle->callback = callback; | |
| handle->userData = userData; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| ****************************************************************************** | |
| * @file UART/UART_TwoBoards_ComIT/Src/stm32f4xx_hal_msp.c | |
| * @author MCD Application Team | |
| * @version V1.2.7 | |
| * @date 17-February-2017 | |
| * @brief HAL MSP module. | |
| ****************************************************************************** | |
| * @attention | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library IEEE; | |
| use IEEE.STD_LOGIC_1164.ALL; | |
| entity T_FF_VHDL is | |
| port( T: in std_logic; | |
| Reset: in std_logic; | |
| Clock_enable: in std_logic; | |
| Clock: in std_logic; | |
| Output: out std_logic); | |
| end T_FF_VHDL; |