File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
FreeRTOS/Demo/RISC-V-Qemu-virt_GCC Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11
11
[Oo ]bj /
12
12
[Ll ]og /
13
13
[Ll ]ogs /
14
+ [Bb ]uild /
14
15
15
16
# CodeWarrior temporary files
16
17
* .tdt
Original file line number Diff line number Diff line change 20
20
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
21
*
22
22
* https://www.FreeRTOS.org
23
- * https://www. github.com/FreeRTOS
23
+ * https://github.com/FreeRTOS
24
24
*
25
25
*/
26
26
54
54
55
55
static uint8_t readb ( uintptr_t addr )
56
56
{
57
- return * ( (uint8_t * ) addr );
57
+ return * ( (volatile uint8_t * ) addr );
58
58
}
59
59
60
60
static void writeb ( uint8_t b , uintptr_t addr )
61
61
{
62
- * ( (uint8_t * ) addr ) = b ;
62
+ * ( (volatile uint8_t * ) addr ) = b ;
63
63
}
64
64
65
65
void vOutNS16550 ( struct device * dev , unsigned char c )
You can’t perform that action at this time.
0 commit comments